我有以下腳本,我試圖禁用刪除,向上和向下按鈕,如果只有一行存在。有人能告訴我如何做到這一點,我卡住了?禁用按鈕,如果只有行仍然
任何人都可以告訴我如何使用下面的腳本將增量名稱添加到選擇字段?
謝謝
<script>
$('.addnew').live('click', function(){
var thisRow = $(this).parent().parent();
newRow = thisRow.clone(true).insertAfter(thisRow);
newRow.find('input:not(.add)').val("");
newRow.find('.remove').show();
newRow.find('input.increment').val(parseInt(thisRow.find('input.increment').val())+1);
});
$('.remove').live('click', function(){
$(this).parent().parent().remove();
});
$('.up,.down').click(function() {
var row = $(this).parents('tr:first');
if ($(this).is('.up')) {
row.insertBefore(row.prev());
}
else {
row.insertAfter(row.next());
}
});
</script>
您可能想使用「.on()」而不是「.live()」作爲live已在jQuery 1.7版中棄用。 – Scampbell