我尝试在不使用 <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>
1 回答
哈士奇WWW
TA贡献1799条经验 获得超6个赞
open() 方法打开一个输出流以收集来自任何 document.write() 或 document.writeln() 方法的输出。
执行完所有写入后,document.close() 方法会导致显示写入输出流的任何输出。
Note: If a document already exists in the target, it will be cleared
.
注意:不要将此方法与打开新浏览器窗口的 window.open() 方法混淆。
添加回答
举报
0/150
提交
取消