添加和查找动态添加到主体的类 - jquery
有什么方法可以添加类或更改动态添加到主体的对象吗?
我正在通过 javascript 将一系列对象添加到正文中。 Fot 实例我添加了一些动态生成并添加到正文中的链接。当它们加载时,我需要选择第一个 div 并向其添加一个新类。
我似乎找不到任何方法来做到这一点......更新 DOM 或者我应该如何解决这个问题?必须有一种方法来改变动态添加的对象。
有什么线索吗?
感谢您的帮助!
Is there any way to add classes or alter objects that is dynamically added to the body?
I am adding a range of objects to the body by javascript.
Fot instance Im adding some links that is dynamically generated and added to the body. When they are loaded I need to elect the first of the divs and add a new class to it.
I can't seem to find any way to do this... Update the DOM or how should I go around this? There must be a way to alter dynamically added objects.
Any clues?
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您动态添加它们,那么您可以只使用已有的对象。否则你需要用嘶嘶声找到它们。
演示: http://jsfiddle.net/PtebM/2/
if you added them dynamically, then you can just use the objects you already have. Otherwise you'll need to find them with sizzle.
demo: http://jsfiddle.net/PtebM/2/
当然你可以:
或者
拨弄 http://jsfiddle.net/4NPqH/
Well of course you caN:
or
fiddle http://jsfiddle.net/4NPqH/
为什么不直接将类名添加到生成的元素中呢?
即:
$('span').html('Hello world').addClass("fancyText").appendTo('body');
Why not just add a class name to your generated elements?.
I.e.:
$('span').html('Hello world').addClass("fancyText").appendTo('body');