jquery基本介绍

来源:互联网 发布:什么推广软件效果好 编辑:程序博客网 时间:2024/06/05 09:40
转自:http://www.w3school.com.cn/jquery/index.asp<html><head><script type="text/javascript" src="jquery.js"></script><script type="text/javascript">$(document).ready(function(){  $("p").click(function(){  $(this).hide();  });});</script></head><body><p>If you click on me, I will disappear.</p></body></html> 

.id

#class