我尝试在不使用 <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>
哈士奇WWW
相关分类