jQuery简单实现隐藏以及显示特效
简单的隐藏以及显示的代码如下:
<!DOCTYPEhtml> <html> <head> <scriptsrc="/jquery/jquery.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ $("#hide").click(function(){ $("p").hide(); }); $("#show").click(function(){ $("p").show(); }); }); </script> </head> <body> <pid="p1">如果点击“隐藏”按钮,我就会消失。</p> <buttonid="hide"type="button">隐藏</button> <buttonid="show"type="button">显示</button> </body> </html>
效果很不错,代码也很简单,希望大家能够喜欢。