我试图更改div元素的兄弟,这是我使用的语句
$('.edit').click(function(){
this.siblings('.innerInfo').html("success");
});
它不断抛出<HTMLDivElement> has no method 'siblings'
异常,我真的无法弄清楚原因。我已经启动了jQuery,我已经在document.ready
感谢您的帮助!
答案 0 :(得分:14)
使用$(this)
代替this
。
答案 1 :(得分:0)
你应该引用$(this),如:
$('.edit').click(function(){
$(this).siblings('.innerInfo').html("success");
});