gpt4 book ai didi

jQuery 使用变量访问元素

转载 作者:行者123 更新时间:2023-12-01 03:17:42 25 4
gpt4 key购买 nike

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

最佳答案

li实际存在时将其放入文档就绪函数中:

$(document).ready(function () {
var $var = $('li:nth-child(2)');
$var.fadeOut('fast')
});

关于jQuery 使用变量访问元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13689123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com