jQuery最新和切换的问题是什么

时间:2014-09-02 06:52:31

标签: jquery toggle

<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
  <ul>
    <li>Go to the store</li>
    <li>Pick up dinner</li>
    <li>Debug crash</li>
    <li>Take a jog</li>
  </ul>
  <script type="text/javascript">
  $("li").toggle(
      function () {
        $(this).css({"list-style-type":"disc", "color":"blue"});
      },
      function () {
        $(this).css({"list-style-type":"disc", "color":"red"});
      },
      function () {
        $(this).css({"list-style-type":"", "color":""});
      }
    );
  </script>

</body>
</html>

以上代码 toggle()无效,我使用 jquery-latest.min.js 。但是,如果我将其更改为 jquery-1.7.1.min.js ,那么它可以正常工作。

请解释某人 jquery最新的问​​题.toggle()?我错过了什么?

感谢。

0 个答案:

没有答案