我的页面中有多个标签,标签下方有一个空 div。我正在将不同的 grails 模板加载到这个 div 中,如下所示
$('.project-content').load('<g:createLink controller="test" action="testDashboard" params=" [testInstance:applicationInstance.name]" />' + "/" + new Date().getTime() );
我的控制器处理如下:
def testDashboard(){
render template: 'testing/testTemplate', model: [applicationInstance: params.get('applicationInstance')],contentType: 'html'
}
模板本身在 div 中有一些 html 内容
要显示的内容
模板确实在 div 内呈现。但是,当我查看页面的源代码时,我找不到模板 html 源代码。
你能告诉我如何让这个可用吗?我需要它将一些事件附加到 testDiv
谢谢,
导航