<!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()?或我错过了什么?
感谢。