当双击一个元素时,是#39;我试图获取一个网址,然后用该网址的内容替换#propertiesBox
的html。
$('.elemContainer').dblclick(function() {
$.get("/ui/propertiesBox", function(data) {
$("#propertiesBox").html(data);
alert("Load was performed.");
});
});
我想要的网址是views/ui/_propertiesBox.html.erb
答案 0 :(得分:2)
您需要该网址的路线:
#routes
get 'ui/propertiesBox' => 'some_controller#properties_box'
在控制器中采取适当的行动:
#controller
def properties_box
render :partial => 'propertiesBox'
end
实现目标。