对 div 的 id 和类调用 .prepend()
如何在 div
的 id
和 class
上调用 prepend?我想我可以做这样的事情:
$('#id .class').prepend('Text');
How can I call prepend on a div
's id
and class
? I was thinking I can do something like this:
$('#id .class').prepend('Text');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您尝试选择 id 为
ID
的单个元素,请使用逗号分隔选择器:如果您尝试选择 id 为
ID
的 div > 和 class ofclass
然后删除两者之间的空格:尽管第二种方法相当多余,因为 ID 需要对于文档中的单个元素是唯一的。
If you're trying to select a single element with an id of
ID
Use a comma to separate the selectors:If you're trying to select a div with an id of
ID
and class ofclass
then remove the space between the two:Although this second method is rather redundant since IDs need to be unique to a single element in the document.
试试这个:
编辑:在尝试时,我看到发布了类似的答案,但似乎不起作用。它应该有效。问题一定出在程序逻辑的其他地方。
尝试在 Firebug 中比较
$('.class')
与$('#ID')
Try this:
Edit: While trying it I see a similar answer was posted and doesn't seem to work. It should work. The issue must lie somewhere else in your program logic.
Try comparing
$('.class')
with$('#ID')
in Firebug