我正在使用以下脚本将 wmode="opaque" 添加到嵌入元素:
jQuery("iframe[src], embed[src]").each(function () {
jQuery(this).prop("src", jQuery(this).prop("src") + "?wmode=opaque");
});
它工作正常,但在嵌入 src 的最后添加了 wmode,如下所示:
http://www.youtube.com/embed/example?fs=1&feature=oembed?wmode=opaque
这并不能让它发挥作用。我希望它更准确,因此它将 wmode 添加为嵌入链接之后的第一个属性,因此无论我如何通过嵌入 URL,例如:
http://www.youtube.com/embed/example?fs=1&feature=oembed
该脚本将使其如下所示:
http://www.youtube.com/embed/example?wmode=opaque?fs=1&feature=oembed
有什么帮助吗?