gpt4 book ai didi

javascript - 如何在接收时不执行而使用 jQuery $.ajax 获取 .js 文件上下文

转载 作者:行者123 更新时间:2023-11-30 15:51:34 25 4
gpt4 key购买 nike

当通过$.ajax 获取*.js 文件时,脚本在接收后执行!

如何在我想要的时候获取和执行?和如何在需要时销毁此脚本?

最佳答案

不确定是否适用于 jQuery,但您可以使用 XHR 方法来完成。

function getScript(b, c){
var a = new XMLHttpRequest();
a.open('get', b, true);
a.onreadystatechange = function(){
a.readyState != 4 || a.status && a.status != 200 || c(a.responseText);
};
a.send();
}

getScript('script.js', function(content){
// Do whatever here
Function(content)(); // Execute the script
});

关于javascript - 如何在接收时不执行而使用 jQuery $.ajax 获取 .js 文件上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39233154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com