如果你不得不這樣做......轉換代碼原型或道場
function addRemoveItemNS() {
var $newLi = $('<li class="special">special and new <button class="addone">I am new</button> <button class="removeme">remove me</button></li>');
$('#list9 li.special')
.find('button.addone')
.unbind('click.addit')
.bind('click.addit', function() {
$(this).parent().after($newLi);
addRemoveItemNS();
})
.end()
.find('button.removeme')
.unbind('click.removeit')
.bind('click.removeit', function() {
$(this).parent().remove();
});
}
$(document).ready(function() {
addRemoveItemNS();
});
...與原型或道場,而不是jQuery的,你會怎麼做呢?
您可能想要編輯此內容 - 您的標題不能以任何方式反映您的問題的內容 – 2009-06-25 04:22:55