呃,为什么这不起作用,我在我的网站上多次使用类似这样的代码..但现在不起作用..
HTML
<div><span>a</span><input type='hidden' /> <input type='button' onClick='Remove(event)' />
jQuery
function Remove(e){
e.preventDefault();
$(this).closest('div').remove();
}
看起来 $(this) 不是我的按钮。我用 alert($(this).val()) 进行了测试,没有任何结果。