jQuery过滤选择器经典应用
本文实例为大家分享了经典的jQuery过滤选择器应用,供大家参考,具体内容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>过滤选择器</title> <style type="text/css"> #txt_show {display:none; color:#00C;} #txt_hide {display:block; color:#F30;} </style> <script src="js/jquery-1.8.3.js"></script> <script language="JavaScript"> $(document).ready(function () { $("[name=show]").click(function () { $("p:hidden").show(); }) ; $("[name=hide]").click(function () { $("p:visible").hide() ; }); }); </script> </head> <body> <p id="txt_hide">点击按钮,我会被隐藏哦~</p> <p id="txt_show">隐藏的我,被显示了,嘿嘿^^</p> <input name="show" type="button" value="点击显示文字" /> <input name="hide" type="button" value="点击隐藏文字" /> </body> </html>
相关推荐
牵手白首 2020-06-14
donghongbz 2020-05-15
83510998 2020-08-08
tthappyer 2020-07-25
tztzyzyz 2020-07-05
87281248 2020-07-04
82244951 2020-06-28
89510194 2020-06-27
开心就好 2020-06-10
89510194 2020-06-06
Web全栈笔记 2020-06-04
tztzyzyz 2020-05-31
开心就好 2020-05-27
牵手白首 2020-05-19
牵手白首 2020-05-16
tztzyzyz 2020-05-15
hehekai 2020-05-08