HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="jQuery/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="js/script1.js" type="text/javascript"></script>
</head>
<body>
<div>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</div>
</body>
</html>
有效的脚本:
$(document).ready(function () {
$('li:nth-child(2)').fadeOut('fast');
});
现在我只是使用一个变量来做同样的事情,它不再起作用了。
var $var = $('li:nth-child(2)');
$(document).ready(function () {
$var.fadeOut('fast');
});
谁能告诉我正确的语法。我刚刚开始学习 jQuery,知道这可能是一个简单的错误,但我就是想不通。提前致谢。:)