ExtJS 多个js
您好,我们可以将一个 JS 文件从一个文件调用到另一个文件...意味着多个 JS 文件。我在 JS 中有一个面板像这样,如果我调用另一个 JS 文件,则应该读取此 PANEL 控制值。
Hi can We call one JS file from one file to another file...Means multiple JS files. I have one panel in JS like this and if I called another JS file ,that should read this PANEL control values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将一个 js 文件内容使用到另一个 js 文件中。像这样使用
//file1.js
你可以重用上面的代码 有些地方像这样
//file2.js
像这样,你可以在 file2.js 中调用 file1.js 函数,但是你已经在 html 页面中包含了这两个 js 文件。
我想这可能对你有帮助。
You can use one js file content in to another js file. Use use like this
//file1.js
You can reuse the above code Some where like this
//file2.js
Like this you can call the file1.js function in to file2.js, But you have include both js files in your html page.
I think this may help you.