我试图从我的模型中的一个函数“获取”结果,“function drop_1($var)”我查看了语法:$.get(URL,data,function(data,status,xhr), dataType) 不确定我的网址是什么,或者是否有更好的方法从模型中“获取”?
<script type="text/javascript">
$(document).ready(function() {
$('#wait_1').hide();
$('#drop_1').change(function(){
$('#wait_1').show();
$('#result_1').hide();
$.get("url", {
func: "drop_1",
drop_var: $('#drop_1').val()
}, function(response){
$('#result_1').fadeOut();
setTimeout("finishAjax('result_1', '"+escape(response)+"')", 400);
});
return false;
});
});
</script>