SOURCE

console 命令行工具 X clear

                    
>
console
$("p:last").hide();
$("ul li:first").hide();
$("#sb").click(function(){
  $("p").show();
}
                 );

$("#hb").click(function(){
  $("p").hide();
}
                 );
$("p:first").click(function(){
  $("#firstP").hide();
});
$(document).ready(function(){
  $("#firstP").mouseenter(function(){
    alert('您的鼠标移到了 id="p1" 的元素上!');
  });
});
<h1>hellow world</h1>
<p id="firstP">HELLOW  world</p>
<h1>hellow world</h1>
<p>HELLOW  world</p>
<ul>
  <li>hu</li>
  <li>ha</li>
</ul>
<ul>
  <li>mm</li>
  <li>me</li>
</ul>
<button id="sb">button</button>
<button id="hb">button2</button>
p{
  color:red;
}