gpt4 book ai didi

javascript - 如何将 id 传递给我的 jquery?

转载 作者:行者123 更新时间:2023-12-03 04:48:03 24 4
gpt4 key购买 nike

我有一个 var 值,我想将其作为 id 传递给我的 jquery 如何实现

这是我的示例代码

$( "span" ).click(function() {
var id=1;
$("#1>li").remove();//now it exactly removes the id 1 but how to pass var id insted of 1
});
<html >
<head>
<meta charset="utf-8">
<title>remove demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<span>hey</span>
<ul id="1">Hello
how are
<li>you?</li>
</ul>
<ul id="2">Hello
how are
<li>you?</li>
</ul>

</body>
</html>

现在它完全删除了id=1,但是如何传递var id而不是1

最佳答案

使用简单的字符串串联来生成选择器字符串。

$('#' + id  + '>li').remove();

关于javascript - 如何将 id 传递给我的 jquery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42779852/

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