在 Grails 应用程序中放置何处以及如何访问 jQuery 插件?
我的问题类似于这个问题。 我想知道我应该在 Grails 应用程序中的什么位置放置 jQuery 插件,特别是 jQuery 数字插件。
一旦我将该插件放在正确的位置,我如何从我的视图中访问它?我问这个问题是因为当我在 Grails(版本 1.3.7)中使用 jQuery 时,我使用我在 here< 找到的插件< /a>,并在安装该插件后访问 jQuery,我在 标记中使用以下代码:
<g:javascript library="jquery" plugin="jquery"/>
也就是说,我的 head 标记中需要什么代码这样我就可以访问数字插件?
My question is similar to this question. I am wondering where I would place a jQuery plugin in my Grails application, specifically the jQuery numeric plugin.
Once I have that plugin in the proper location, how do I access it from my view? I ask this because when I use jQuery in Grails (version 1.3.7) I use the plugin I found here, and to access jQuery after installation of that plugin I use the following code in my <head>
tag:
<g:javascript library="jquery" plugin="jquery"/>
So with that said, what code do I need in my head tag so I can access the numeric plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请按照以下步骤操作:
.js
文件添加到web-app/js/
,这将使它们在将此标签添加到您的标题中,可以在主布局中,也可以在 GSP 中(如果不需要到处都可以)。
请参阅此处了解有关
g:javascript
标记的更多信息。Follow these steps:
.js
file(s) toweb-app/js/
, which will make them available in the deployed application under<context-root>/js/
Add this tag to your header, either in the main layout, or a GSP if not needed everywhere.
<g:javascript src="plugin.jquery.js"/>
See here for more information on the
g:javascript
tag.