Ajax提交表单
Ajax提交表单
<form id="form1" action="input.aspx" method="post" enctype="multipart/form-data">
<input type="text"/>
<input typ="file"/>
..........
</from>
前台:
$('#form1').ajaxSubmit({
success: function (data) {
alert(data);
}
});
后台一条返回语句:
Response.Write("no");
为什么我alert(data)结果是这样的的。为什么返回no,后面还跟着其他东西,请看图
------最佳解决方案-------------------- Response.Write("no");
Response.End();
------其他解决方案--------------------Response.End();立即结束响应报文