$("#fileUploadForm").ajaxSubmit({
url: "img.ashx",
type: "post",
success: function (data)
{
}
})
url接受图片的地址
type:提交方式
Success ajax异步成功后返回数据
在fileUploadForm表单中包含
<input type="text" name="UserInfo" />
也会将userinfo的值传入服务端
时间: 2024-10-13 22:46:52