我有类似的 html 方案
<li>Some text <a href='#' class='click'>Remove</a> <input type='hidden' ></li>
我有 OnClick 功能
$(".click").click(function() {
// i need to select 'li' and then delete it
// i have this code, but its not working
$(this).prev('li').remove();
return false;
});
如何选择以前的 html 标签 onClick ?