我觉得我一直在寻找解决方案。
我想在我在iframe中显示的网站上替换另一个图片网址。经过几个小时的研究,我已经完成了使用jquery来处理任务。
不幸的是,我发现的大多数解决方案都使用点击事件来触发iframe中的更改。我希望更改发生在页面加载上。
我的jquery经验有限,所以希望有人能回答这个问题,所有人都会在这片土地上,哈哈。
到目前为止,我发现了一些代码,它们应该识别包含我要替换的图像的类,但我不确定如何使用replaceWith(或者如果这是正确的用法) jQuery的。
这是我一直在使用的代码:
<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript">
$(function() {
//here you have the control over the body of the iframe document
var iBody = $("#iframe").contents().find("body");
//here you have the control over any element (#myContent)
var myContent = iBody.find("#brandingPane");
});
</script>
</head>
<body>
<iframe src="https://customer.itsaconnect.co.za:8444" width="80%" height="600" id="iframe" ></iframe>
</body>
</html>
我想将“brandingPane”div中的img url替换为另一个图片网址(现在任何演示网址都会这样做)
请帮忙!