在 Grails 应用程序中放置何处以及如何访问 jQuery 插件?

发布于 2024-12-01 21:24:19 字数 659 浏览 0 评论 0原文

我的问题类似于这个问题我想知道我应该在 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 技术交流群。

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

发布评论

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

评论(1

_畞蕅 2024-12-08 21:24:19

请按照以下步骤操作:

  1. .js 文件添加到 web-app/js/,这将使它们在 /js/
  2. 将此标签添加到您的标题中,可以在主布局中,也可以在 GSP 中(如果不需要到处都可以)。

请参阅此处了解有关 g:javascript 标记的更多信息。

Follow these steps:

  1. Add your .js file(s) to web-app/js/, which will make them available in the deployed application under <context-root>/js/
  2. 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.

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