$(" +p",this) 和 $("p",this)有区别吗? <h1>introduction</h1>
<p id="pp">it is a test</p>
<script>
$(document).ready(function(){
$("h1+p").hide();
$("h1").hover(function(){
$("+p",this).show()}, function(){
$("+p",this).hide();});
}); </script>
- 2 回答
- 0 关注
- 1192 浏览
添加回答
举报
0/150
提交
取消