Eclipse:动态 Web 项目,在哪里放置我下载的 jQuery API
我已经在 Eclipse 中创建了动态 Web 项目。由于我的 UI 使用 javascript jQuery,我已经下载了 jQuery API,我想知道将它放在我的 eclipse 项目中的哪里?。 在哪个目录下? eclipse里面有jQuery API的配置吗?
I have created my dynamic web project in Eclipse. Since my UI use javascript jQuery, I have download the jQuery API, I am wondering where to put it in my eclipse project?.
Under which directory? is there any configurations for the jQuery API inside eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不太确定您是否只想知道如何为 Web 应用程序提供 jQuery,或者您是否希望能够使用 jQuery 开发 JavaScript 应用程序并具有自动完成功能。
要在 Web 应用程序中使用 jQuery,您可以将其放在 WebContent 文件夹中的某个位置。我通常创建一个“scripts”文件夹,其中包含所有 js 文件。
然后,您可以从 servlet / html 文件...或其他任何文件链接到 js 文件。例如,WebContent 目录中有一个index.html,那么您可以使用路径scripts/jquery.js 链接到scripts 文件夹中的js 文件。
我希望这对您有所帮助。
兄弟,克里斯
I'm not quite sure if you just want to know how to provide jQuery for your WebApplication or if you want to be able to develop JavaScript applications with jQuery and have autocompletion for doing so.
To use jQuery in your WebApp you can put it somewhere in the WebContent folder. I usually create a "scripts"-folder where I have all the js files.
You can then link from your servlet / html file... or whatever to the js file. E.g. you have an index.html in the WebContent directory then you would use the path scripts/jquery.js to link to the js file in the scripts folder.
I hope this was some help to you.
br, Chris
这取决于你把它放在哪里。一旦你决定在某个地方包含 jQuery 和你想要的页面上的脚本标签。例如:
显然,您的 jquery .js 的名称和版本可能不同,因此需要时进行更新。
It's up to you where you put it. Once you decide on somewhere include jQuery with script tags on which ever pages you want it. For example:
Obviously the name and version of your jquery .js might be different so update where necessary.
在现有项目中创建一个新文件夹作为示例脚本并放置 jquery.js 文件。
要在编程中包含该文件,只需给出路径:
create a new folder in your existing project as example script and place jquery.js file.
To include the file in programming just give the path as: