从不带标签的 Blogger 导入 JavaScript 文件

我尝试在不使用 <script src = 的情况下检索博主提要代码 我尝试了 document.write 但是当导入完成时,原始页面内容被删除 有没有办法在不使用 <script 的情况下按下按钮时导入


<button onclick="myFunction()">Click me</button>

<h1>Test Content</h1>


<script>

function myFunction() {

// The problem here is deleting the text content With document

// And I tried Use document.createElement

// Is there any other way to call and run the file codes ?


 document.open();

document.write('<script type="text/javascript" src="https://photoshop4all.com/feeds/posts/default?max-results=5&alt=json-in-script&callback=URLAGAIN"><\/script>');


document.close();




  }




  function URLAGAIN(json) {



  document.write(json.feed.entry[0].link[1].href);





    }

</script>


胡子哥哥
浏览 111回答 1
1回答

哈士奇WWW

open() 方法打开一个输出流以收集来自任何 document.write() 或 document.writeln() 方法的输出。执行完所有写入后,document.close() 方法会导致显示写入输出流的任何输出。Note: If a document already exists in the target, it will be cleared.注意:不要将此方法与打开新浏览器窗口的 window.open() 方法混淆。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript