如何更改所有的背景颜色元素

发布于 2025-01-09 04:23:00 字数 297 浏览 0 评论 0原文

我试图更改所有斜体文本的背景颜色,而不是在段落中的每个单词上使用跨度。 它在斜体文本旁边显示 。 我已经尝试过

$(".em").css({
    "background-color":"#d9f9f9",
});

或/并尝试过这个:

var elem=document.getElementByTagName(em)[1];
elem.style.backgroundColor='#d9f9f9';

I am trying to change the background colors of all italized text, instead of using a span on every single word through the paragraph.
It says <em> next to the italized text.
I have tried

$(".em").css({
    "background-color":"#d9f9f9",
});

or/and tried this:

var elem=document.getElementByTagName(em)[1];
elem.style.backgroundColor='#d9f9f9';

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

极致的悲 2025-01-16 04:23:00

请参阅 querySelectorAll

注意此方法返回一个数组,所以我们应该循环它:

var emList = document.querySelectorAll('em');

[].forEach.call(emList , function(em) {
  // do whatever
  em.style.color = "red";
});

See querySelectorAll:

Notices this method return an array, so we should loop it:

var emList = document.querySelectorAll('em');

[].forEach.call(emList , function(em) {
  // do whatever
  em.style.color = "red";
});
﹏半生如梦愿梦如真 2025-01-16 04:23:00

您可以尝试以下操作:

const italics = document.querySelectorAll('em');

italics.forEach(italic => {
  italic.style.backgroundColor = '#d9f9f9';
});

You could try the following:

const italics = document.querySelectorAll('em');

italics.forEach(italic => {
  italic.style.backgroundColor = '#d9f9f9';
});
〗斷ホ乔殘χμё〖 2025-01-16 04:23:00

您的第一个建议应为 "em",而应为 ".em"。您的秒建议应为 "em",而应为 em

Your first suggestion says ".em" where it should say "em". Your seconds suggestion says em where it should say "em".

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