追加后访问元素
我需要在 JQuery 追加后访问 DOM 元素。假设我有这个:
<ul id="items">
<li class="item">one</li>
<li class="item">two</li>
</ul>
然后是 Javascript:
var addItems = function(html) {
$('#items').append(html);
//How do I access the new items here?
}
假设 html 是:
<li class="item">three</li>
<li class="item">four</li>
我需要对这两个新项目做一些事情。这包括将事件绑定到它们。所以我不能简单地使用 $('.item') 因为这会给现有项目添加双重事件。一旦新项目成为 DOM 的一部分,它们就与现有项目没有任何区别。
最好的方法是什么?
I need to access DOM elements after JQuery append. Let's say I have this:
<ul id="items">
<li class="item">one</li>
<li class="item">two</li>
</ul>
Then is Javascript:
var addItems = function(html) {
$('#items').append(html);
//How do I access the new items here?
}
Let's say that html is:
<li class="item">three</li>
<li class="item">four</li>
I need to do something to the two new items. This something includes binding events to them. So I cannot simply use $('.item') because that will add double events to the existing items. Once the new items are part of the DOM, there is nothing about them that distinguishes them from the existing items.
What's the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在附加 html 之前先创建 html 的 jQuery 集合:
Make a jQuery collection of the html before appending it:
这是一个工作示例: http://jsfiddle.net/hunter/7UTA2/
这表明您仍然可以操作项目的文本(或任何属性),因为您仍然拥有对集合的引用。
Here's a working example: http://jsfiddle.net/hunter/7UTA2/
This showcases that you still can manipulate the text (or whatever attribute) of the items since you still have a reference to the collection.