修改A元素,但仅当它包含在特定范围 ID 内时

发布于 2024-10-25 06:11:16 字数 633 浏览 2 评论 0原文

我有以下 jQuery 小技巧,可以使 Warning 中显示的任何 HTML 显示为大而红色:

$("strong:contains('Warning')").css("color","red").css("font-size","400%");

它工作得很漂亮。但是,它会使所有内容变大且呈红色,而且我真的只希望它使警告也变大并呈红色(如果它们也出现在 ID 为 myWarning 的跨度中)。例如:

<span id="myWarning">
  <div align="left" class="tip">
    <strong>Warning</strong> (I want this to be big and red...)
  </div>
</span>

<strong>Warning</strong> (...but I don't want this to be big and red)

我怎样才能增强我的 jQuery hack 让它只修改第一个“警告”的 CSS 而不是第二个?

I have the following little jQuery hack to make any HTML that shows up in <strong>Warning</strong> appear big and red:

$("strong:contains('Warning')").css("color","red").css("font-size","400%");

It works beautifully. However, it makes everything big and red, and I really only want it to make Warnings big and red if they also appear in a span with the id myWarning. For example:

<span id="myWarning">
  <div align="left" class="tip">
    <strong>Warning</strong> (I want this to be big and red...)
  </div>
</span>

<strong>Warning</strong> (...but I don't want this to be big and red)

How can I enhance my jQuery hack to get it to only modify the CSS of the first "Warning" and not the second?

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

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

发布评论

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

评论(4

一枫情书 2024-11-01 06:11:17

只需在选择器前面添加一个 #myWarning 即可?

$("#myWarning strong:contains('Warning')").css("color","red").css("font-size","400%");

Just prepend a #myWarning to your selector?

$("#myWarning strong:contains('Warning')").css("color","red").css("font-size","400%");
乱了心跳 2024-11-01 06:11:17
$("#myWarning strong").css("color":"red", "font-size":"400%");
$("#myWarning strong").css("color":"red", "font-size":"400%");
空气里的味道 2024-11-01 06:11:17

我想你希望第一个这样的警告是大的和红色的?

$("strong:contains('Warning')").first().css("color","red").css("font-size","400%");

I think you want just the first such warning to be big and red?

$("strong:contains('Warning')").first().css("color","red").css("font-size","400%");
纸伞微斜 2024-11-01 06:11:17

你为什么使用 jQuery 来实现这个目的?为什么不简单地使用 CSS:

#myWarning strong { color: red; font-size: 400%; }

Why are you using jQuery for that? Why not simply use CSS:

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