我是否可以在编辑嵌入式网页的内容时在其他网页上嵌入网页

时间:2017-12-13 14:25:48

标签: javascript jquery html

我希望在嵌入该网页时将网页嵌入到其他网页中,我想稍微编辑其内容。 嵌入我正在使用此脚本的网页。我可以使用这个简单的javascript编辑对象内容。但我无法编辑对象或嵌入式网页内的任何内容。请以任何方式帮助你。任何类型的解决方案的解决方案将不胜感激

function myFunction() {
  document.body.innerHTML = document.body.innerHTML.replace('hello', 'another text');
}
<div>

  <p id="myP">I am a paragraph.</p>
  <button onclick="myFunction()">Try it</button>
  <p>hello</p>



  <object type="text/html" data="https://www.socialcommer.com/store/mykitchenmydish/1" style="width:100px; height:100px; ">
    </object>
</div>

0 个答案:

没有答案