从 javascript 调用另一个脚本函数

发布于 2024-07-11 05:57:41 字数 346 浏览 10 评论 0原文

我已经设计了 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 技术交流群。

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

发布评论

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

评论(1

凉薄对峙 2024-07-18 05:57:41

您需要为 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

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