我有 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
答案 0 :(得分:1)
使用简单的字符串连接来生成选择器字符串。
$('#' + id + '>li').remove();