从 javascript 调用另一个脚本函数
我已经设计了 Javascript 函数 My.js 它包含以下代码
My.js
function display(){
//Call to another Javascript function defined as ShowUser() in selectUser.js
showUser(str);
}
SelectUser.js has
function showUser(Str){
//Do the display
}
现在,我的问题是:我想从 My.Js 本身调用 showUser() 。 任何人建议 如何拨打电话? 我应该包括什么吗?
I have Designed the Javascript function My.js it contains following code
My.js
function display(){
//Call to another Javascript function defined as ShowUser() in selectUser.js
showUser(str);
}
SelectUser.js has
function showUser(Str){
//Do the display
}
Now, my question is: I want to call showUser() from My.Js itself. Any one suggest
how to make the call? Should I include anything?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为 HTML 文档中的两个 javascript 文件设置单独的脚本标记,并设置 src 属性,假设这是针对 HTML 页面(而不是 AIR 应用程序、服务器端 JavaScript 或 Rhino)。 无论您在通过脚本元素添加的任何 JavaScript 文件中在全局范围内声明什么函数,或内联代码都应该可用于任何文件中的 JavaScript。
唯一需要注意的是,如果您使用 window.foo 语法将某些内容分配给文件中的全局(窗口)范围,那么令人惊讶的是,在 IE 中,其他文件会认为 window.foo 未分配,直到 JavaScript 开始执行。
有关上一期的更多信息
You need to have separate script tags with the src attribute set for both javascript files in your HTML document, assuming this is for an HTML page (and not an AIR app, or serverside JavaScript, or Rhino). Whatever functions you declare in the global scope in any JavaScript file you add via a script element, or inline code should be available to JavaScript in any file.
The only caveat to this is that if you use window.foo syntax to assign something to the global (window) scope in a file then, surprisingly in IE, other files will think window.foo is unassigned until JavaScript begins executing.
More Info on that last issue