在函数中加载脚本

发布于 2024-11-16 15:52:46 字数 267 浏览 2 评论 0原文

我正在尝试在函数中加载依赖于该函数变量的脚本。基本上,代码是这样的

head.js("somescript.js", function() {

   var dependentVar = //stuff;

    //insert script here which depends on dependentVar
});

这可能吗?或者有人知道我该怎么做?我需要这样做是因为 dependentVar 包含 C# 代码?

I am trying to load a script within a function that depends on a variable of that function. Basically, the code is like this

head.js("somescript.js", function() {

   var dependentVar = //stuff;

    //insert script here which depends on dependentVar
});

Is this possible or anyone know how I can do this ? I need to do this because dependentVar contains C# code ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

大海や 2024-11-23 15:52:46

这听起来像是一个设计缺陷。您是否可以将其封装在函数中并将 dependentVar 作为参数传递,而不是动态加载代码?

This sounds like a design flaw. Instead of loading the code on the fly, can you encapsulate it in a function and pass dependentVar as a parameter?

清醇 2024-11-23 15:52:46

你的意思是这样吗?

$.getScript("somescript.js", function() {

   var dependentVar = //stuff;

    //insert script here which depends on dependentVar
    if(dependentVar) {
        $.getScript("somescript2.js", function() {

        });    
    }
});

You mean like this?

$.getScript("somescript.js", function() {

   var dependentVar = //stuff;

    //insert script here which depends on dependentVar
    if(dependentVar) {
        $.getScript("somescript2.js", function() {

        });    
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文