作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 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/
我是一名优秀的程序员,十分优秀!