我正在开发一个 Rails 网络应用程序。在我的一个观点中(在 index.html.haml)我有一个 jquery opendialog,我在其中列出了一些东西。我的问题是我不想在加载索引页面但在 openclick 事件时加载它。我将提供一些代码。我对 rails、haml 和 jquery 还是陌生的,所以任何帮助都会受到欢迎,在此先感谢。
问候。
#...stuff
#dialog creation and loading
.dialog{:id => "codes_#{stuff.id}", :title => t_s(:index, resource_class.to_s.downcase)}
#dialog: haml code with the list loading that is done when the main page is loaded instead on being called at the onclick
#link that opens the dialog
= link_to t_s(:show, resource_class.to_s.downcase), '#', :onclick => "openDialog(#{stuff.id})", :title => t_s(:show, resource_class.to_s.downcase)+ " " +t_s(:index, resource_class.to_s.downcase)
#...stuff
这是一些生成的js:
$(document).ready(function(){
$(".dialog").dialog({ width: 600, height: 400, autoOpen: false, modal: true, show: "blind", hide: "explode"
});
});
function openDialog(id){
$("#codes_"+id).dialog( "open" ); return false;
}
问候