jQuery使用hide方法隐藏页面上指定元素的方法教程
程序员文章站
2022-06-20 18:00:20
本文实例讲述了jquery使用hide方法隐藏页面上指定元素的方法。分享给大家供大家参考。具体如下:
下面的js代码隐藏了网页中所有
标签的内容 <...
本文实例讲述了jquery使用hide方法隐藏页面上指定元素的方法。分享给大家供大家参考。具体如下:
下面的js代码隐藏了网页中所有<p>标签的内容
<!doctype html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(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>click me</button> </body> </html>
上一篇: jquery的each方法使用示例分享
下一篇: jquery动态改变div宽度和高度