更改另一个iframe javascript中的iframe中的scr

时间:2018-05-28 14:39:32

标签: javascript

如何更改iframe的scr,这是在另一个iframe中?

示例:http://tomtopchina.blogspot.ro/

我想更改“mypayingcryptoads”里面的“我的推荐人”这个页面,它位于“tomtopchina.blogspot”里面,所以我可以访问这么深吗?它需要在javascript中

1 个答案:

答案 0 :(得分:0)

您可以尝试使用jQuery

的内容

let iframe = $('#some-id').contents().find('html').html()

然后执行字符串替换,然后将其写回

$('#some-id').contents().find('html').html(iframeHtmlChanged)

here

拉出来