如何从 Visualforce 页面调用 JavaScript?
我已将 JavaScript 文件存储到 Salesforce 的静态资源中。但我无法从 Visualfroce 调用这些 javascript 文件。请给我任何解决方案,我如何从 Visualforce 调用这些 javascript 文件。
谢谢
I have stored JavaScript file into the Static Resources at Salesforce. But i can't call those javascript file from Visualfroce. Please give me any solution how can i call those javascript file from visualforce.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 JavaScript 文件中,定义一个对象及其函数,如下所示:
在 Visualforce 页面中,使用以下内容包含对文件的引用,其中“[javascript 文件]”是静态资源的名称:
注意:“[javascript file]”必须是您为静态资源指定的名称,而不是您上传的文件的名称。因此,如果您上传 MyScript.js 并在 Visualforce 中将其命名为“Scripts”,那么您的代码将如下所示:
现在您可以调用 JavaScript 函数 - 类似于:
In your JavaScript file, define an object and its function as such:
In your Visualforce page, include a reference to the file using the following, where "[javascript file]" is the name of the static resource:
Note: the "[javascript file]" must be the name that you have given for the static resource, not the name of the file you uploaded. So, if you upload MyScript.js and name it "Scripts" in Visualforce, then your code would look like the following:
Now you can call the JavaScript function - something like:
这是解决方案
http://www.salesforce.com/us/开发人员/docs/pages/Content/pages_javascript_intro.htm
Here's the solution
http://www.salesforce.com/us/developer/docs/pages/Content/pages_javascript_intro.htm