我有一個像選擇上的HTML標記的onClick
<li>Some text <a href='#' class='click'>Remove</a> <input type='hidden' ></li>
HTML格式,我有功能的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?
該死,我花了這麼多時間,因爲我不知道'李'是父母...... :) – 2012-07-21 13:48:13