多亏了这个网站上那些人的大力帮助,我一直在慢慢学习 Mojolicious 和 Perl。我一直在尝试根据 Jquery get 调用的结果来确定动态更新部分页面的最佳方法。
目前我有一个这样的模板(感谢 Mojo 的贡献者之一 Joel)
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
</head>
<body>
%= content
%= include 'common_js'
%= content_for 'js_imports'
</body>
</html>
然后我有一个使用这种布局的页面,如下所示。
%title 'Script Test';
% content_for 'js_imports' => begin
%= javascript begin
$(document).ready(function(){
$("input#testbutton").click(function(){
$.get('<%= url_for('testbutton') %>',
function (data) {
$("div#content").html(data);
});
})
});
% end
% end
<p>Main Page</p>
<input type="button" id="testbutton" class="btn btn-danger" value="test">
<div class="span9" id="content"></div><!--/span9-->
因此,当单击“测试按钮”时,我正在将 get 请求的响应写入带有 id 内容的 div。
我要返回的“数据”是;
% content_for 'js_imports' => begin
%= javascript begin
$(document).ready(function(){
$("input#testbutton2").click(function(){
alert('testbutton2 clicked');
});
});
% end
% end
<p>Test Button Clicked</p>
<input type="button" id="testbutton2" class="btn btn-danger" value="test2">
现在,我上面的 javascript 没有嵌入到我的页面中。我认为这是因为 content_for js_imports 不再存在于 DOM 中。我可以在我的测试页中添加一个“content_for”标签,然后将脚本添加到我的带有 ID 内容的 DIV 中。我试图以某种方式实现的是将我的脚本添加到我现有脚本下的页面末尾。我知道我可以使用 javascript 添加和删除脚本,但我想知道是否有办法使用标签助手来做到这一点?