1

我想在鼠标悬停时使用 jquery 删除标签错误。我正在使用新版本的 jquery ( http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js )。它适用于特定的 div 而不适用于 label.error 方法。

html

 <div  class="old">New Para Div</div>
 <div  class="old">New Para Div</div>
 <div class="old">New Para Div</div>
 <div class="old">New Para Div</div>

jQuery

 $(".old").on("mouseover",function(){ $(this).remove(); });

上面的编码正在工作。但这一个不起作用。

$("label.error").on("mouseover",function(){
     $(this).remove();
     });

任何人都可以帮助我,请..

4

1 回答 1

1

应该是因为error标签是动态创建的

$(document).on("mouseover", "label.error", function(){
    $(this).remove();
});
于 2013-06-07T05:29:28.720 回答