2

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,知道这可能是一个简单的错误,但我就是想不通。提前致谢。:)

4

2 回答 2

3

将其放入实际存在的document ready function时间:li

$(document).ready(function () {
   var $var = $('li:nth-child(2)');
   $var.fadeOut('fast')
});
于 2012-12-03T18:09:03.073 回答
1

变量需要在内部赋值$(document).ready(function() { }

于 2012-12-03T18:09:16.563 回答