我可以在 jquery 中使用这样的
$(this+"#id").html(...);
方法还是有其他方法。
我有这样的情况可以这样使用。我的代码如下
html代码
<div id="box1">
<div ></div>
</div>
CSS代码是
#box1 {
width:300px;
height:200px;
border:1px solid #333;
}
#box1 div
{
width:200px;
height:150px;
border:1px solid #999;
margin:auto;
margin-top:10px;
}
jQuery代码是
$(document).ready(function()
{
$("#box1").mouseenter(function()
{
$(this+"div").html("<p>Mouse entered</p>");
}); });
在jsfiddle中查看我的代码