gpt4 book ai didi

javascript - 使用 jquery 更改 iframe 中的 img 大小

转载 作者:行者123 更新时间:2023-11-29 10:40:19 26 4
gpt4 key购买 nike

我在我的网站上使用广告服务器。所有添加都使用 iframe,我试图在 iframe 中定位 img(宽度 = 728 和高度 = 90 的第一个)以更改其大小(宽度和高度)。我已经能够定位 body (更改其背景颜色以进行测试),但我无法定位图像以更改其大小。这是 iframe 代码,我需要以 iframe 对象为目标,而不是 iframe 类,因为该类每次都会更改。

<div class="insert_pub">
<iframe id="a0811af3" width="" height="90" frameborder="0" scrolling="no" src="/www/delivery/afr.php?zoneid=3&cb=INSERT_RANDOM_NUMBER_HERE" name="a0811af3">
#document
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<a href="/www/delivery/ck.php?oaparams=2__bannerid=212__zoneid=3__cb=9b2dbdb22f__oadest=http%3A%2F%2Fthebayfestival.fr%2F" target="_blank">
<img src="/www/images/c34d3222b19118f97aa99e76310c70fe.jpg" alt="" title="" height="90" border="0" width="728">
</a>
<div id="beacon_9b2dbdb22f" style="position: absolute; left: 0px; top: 0px; visibility: hidden;">
<img src="/www/delivery/lg.php?bannerid=212&amp;campaignid=176&amp;zoneid=3&amp;loc=http%3A%2F%2Fwww.mmdwc.com%2Fmagazine%2F&amp;cb=9b2dbdb22f" alt="" style="width: 0px; height: 0px;" height="0" width="0">
</div>
</body>
</html>
</iframe>
</div>

这是我试过的方法,但它不起作用:

function iframe_insert_size() {
$(".insert_pub iframe").contents().find("img").css({"width":624, "height" : 77});
}

最佳答案

您可以通过下一句话访问您的 iFrame:

<script type="text/javascript">


$(document).ready(function () {

$("#a0811af3").on('load', function () {

$("#a0811af3").contents().find("your image").on("click", function (e) {

});
});
});

当您在图像内部单击时,这种情况会起作用。正确吗?,这就是您所需要的?

关于javascript - 使用 jquery 更改 iframe 中的 img 大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30529048/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com