如何使用JS执行URL,但不能打开新窗口或标签?
答案 0 :(得分:0)
您可以使用以下JS在当前窗口中加载网址。
window.location.assign("http://google.com")
有关详细信息,请查看 https://developer.mozilla.org/en-US/docs/Web/API/window.location#Methods
答案 1 :(得分:0)
如果您有一个js文件的URL,并且您希望执行该内容,那么您可以直接将脚本元素附加到您的页面。
var script = document.createElement("SCRIPT");
script.onload = function(){
// do something on script load
};
document.head.appendChild(script);
这是我能理解这个问题的最好方法。