我正在尝试在带有 jquery 插件 v1.8.0 的 grails 2.1.1 应用程序中使用 jquery。
我的 .js 文件位于“web-app/js/”中
我的视图标题是
<head>
<g:javascript library="jquery" plugin="jquery"/>
<g:javascript src="dataFeed.js"/>
这有效:
alert("hello");
这不会:
$(document).ready(function(){
alert("help");
});
有任何想法吗?