我有这个文件:
<html>
<body>
<div id="preview">
<p>test</p>
</div>
</body>
</html>
我有这个代码:
$("p").mouseover(function(){
$("p").css("background-color","yellow");
});
$("p").mouseout(function(){
$("p").css("background-color","lightgray");
});
function add(){
$("#preview").append("<p id="test">test2</p>");
}
问题是,mouseover
andmouseout
函数仅适用于<p>
我在 html 上添加的,而不适用于<p>
通过 jquery 附加的 i。
我该怎么做才能使附加的jquery<p>
也能够调用mouseover和mouseout?