如何选择基于SRC的iFrames和添加类

时间:2017-08-18 18:06:57

标签: javascript jquery html iframe

我想在src包含go.pardot.com的网站上选择所有iframe,然后添加名为pardotIframe的类。

页面上可能有多个iframe,但是大多数iframe都会在src中包含go.pardot.com。我希望使用src,因为大多数iframe都没有classid属性。

以下是iframe代码示例:

<iframe src="https://go.pardot.com/l/43312/2017-02-21/67lkx6" type="text/html" frameborder="0" allowtransparency="true" style="border: 0px; overflow: hidden;" scrolling="no"></iframe

我如何使用jQuery做到这一点?谢谢!

1 个答案:

答案 0 :(得分:1)

要实现此目的,您可以使用Atrribute Contains选择器通过iframe中的网址查找src,然后只需向其中添加一个类:

$('iframe[src*="go.pardot.com"]').addClass('pardotIframe');