jQuery使用

先引入jQuery,然后

<scripts>

$(selector).action();

$(document).ready(function(){

//  alert(" 加载完成!");

$("p").click(function(){

  $(this).hide();

});

});

</scripts>

原文地址:https://www.cnblogs.com/powerlx/p/4842778.html