在函数中加载脚本
我正在尝试在函数中加载依赖于该函数变量的脚本。基本上,代码是这样的
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这听起来像是一个设计缺陷。您是否可以将其封装在函数中并将
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?你的意思是这样吗?
You mean like this?