使用toggle的方法
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>使用show()和hide()方法显示和隐藏元素</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <h3>使用show()和hide()方法显示和隐藏元素</h3> <div> <h4>我喜欢吃的水果</h4> <ul> <li>苹果</li> <li>甘桔</li> <li>梨</li> </ul> <input id="hidval" type="hidden" value="0"/> </div> <script type="text/javascript"> $(function () { $("h4").bind("click", function () { $("ul").toggle(function(){ if ($("#hidval").val() == 0) { $("ul").show(); $("#hidval").val(1); },function(){ $("ul").hide(); $("#hidval").val(0); }); }); }); </script> </body> </html>
这样写没有效果?为什么?是哪里出错了?