对 div 的 id 和类调用 .prepend()

发布于 2024-12-10 10:56:30 字数 150 浏览 0 评论 0原文

如何在 dividclass 上调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╄→承喏 2024-12-17 10:56:30

如果您尝试选择 id 为 ID 的单个元素,请使用逗号分隔选择器:

$('#ID,.class').prepend('Text');

如果您尝试选择 id 为 ID 的 div > class of class 然后删除两者之间的空格:

$('#ID.class').prepend('Text');

尽管第二种方法相当多余,因为 ID 需要对于文档中的单个元素是唯一的。

If you're trying to select a single element with an id of ID Use a comma to separate the selectors:

$('#ID,.class').prepend('Text');

If you're trying to select a div with an id of ID and class of class then remove the space between the two:

$('#ID.class').prepend('Text');

Although this second method is rather redundant since IDs need to be unique to a single element in the document.

一影成城 2024-12-17 10:56:30

试试这个:

$(".class, #ID").prepend('Text');

编辑:在尝试时,我看到发布了类似的答案,但似乎不起作用。它应该有效。问题一定出在程序逻辑的其他地方。

尝试在 Firebug 中比较 $('.class')$('#ID')

Try this:

$(".class, #ID").prepend('Text');

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文