日期:2014-05-16 浏览次数:20827 次
HTML代码
<tr>
<td align="center" style="font-size:12px">模版上传:</td>
<td>
<input id="fileUpload" name="fileUpload" type="file" style="width: 400px; background: White" class="easyui-validatebox" required="true" validType="fileup(this);"/>
</td>
</tr>
<tr>
<td align="center" style="font-size:12px" >图片上传:</td>
<td>
<input id="imageUpload" name="imageUpload" type="file" style="width: 400px; background: White" class="easyui-validatebox" required="true" validType="imageup(this);"/>
</td>
</tr>
jquery代码
$("#insertForm").ajaxSubmit({
url:"<%=ctxPath%>/template/insertTemplate.ajax",
type: "post",
dataType: "json",
async: false,
timeout:999999,
success:function(data){
if(data.success){
$.messager.alert('提示', data.data.msg, 'info', function() {
$("#btn").hide();
$("#content").html("<img src='<%=ctxPath%>/images/ajax.gif'/>加载中...");
$("#content").hide();
window.location="<%=ctxPath%>/template/listTemplate.jsp";
});
},
error:function(data){
$.messager.alert('提示', data.errorReason.msg, 'error');
$("#btn").show();
$("#content").hide();
}
});