基本的就jQuery例子

来源:互联网 发布:淘宝的购物车在哪里 编辑:程序博客网 时间:2024/06/06 07:18
<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){$("button").click(function(){$("p").hide();});});</script></head><body><h2>This is a heading.点击按钮不隐藏……</h2><p>This is a paragraph.点击按钮将隐藏……</p><p>This is another paragraph.点击按钮将隐藏……</p><button type="button">点击</button></body></html> 
0 0