我从包含我想要显示的HTML的服务器获得asyc响应:
$( document ).ready( function ()
{
var options =
{
success: showResponse,
error: errorHandler,
type: 'post'
};
// bind to the form's submit event
$('#captureForm').submit(function()
{
$(this).ajaxSubmit(options);
return false;
});
});
function showResponse(responseDoc, statusText)
{
$('#output').html( responseDoc );
}
其中#output是一个div,我想要注入响应文档。上面的代码不起作用。
任何建议都将不胜感激。
感谢。
-Raj
答案 0 :(得分:0)
选项可能存在问题,请尝试将它们移入函数中。