如何更改所有的背景颜色元素
我试图更改所有斜体文本的背景颜色,而不是在段落中的每个单词上使用跨度。 它在斜体文本旁边显示 。 我已经尝试过
$(".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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅 querySelectorAll:
注意此方法返回一个数组,所以我们应该循环它:
See querySelectorAll:
Notices this method return an array, so we should loop it:
您可以尝试以下操作:
You could try the following:
您的第一个建议应为
"em"
,而应为".em"
。您的秒建议应为"em"
,而应为em
。Your first suggestion says
".em"
where it should say"em"
. Your seconds suggestion saysem
where it should say"em"
.