jquery iE 不兼容问题,求解
struts2 返回json数据,页面一个form 表单,包含简单文本,及若干file 上传.火狐,谷歌功能正常,ie 老提示下载.不说了,贴源码...
struts2 配置:
<package name="/product/json" extends="json-noprotected-default">
<action name="*" method="{1}" class="com.test.fund.web.action.product.FundProductAction">
<result type="json">
<param name="ignoreHierarchy">true</param>
<param name="excludeNullProperties">true</param>
<param name="root">msg</param>
</result>
</action>
</package>
private String msg ;
public String test(){
msg="成功";
return SUCCESS;
}
jquery struts2 json ?IE
jQuery("#mainForm").ajaxSubmit({
url:'/product/json/doUpdateFundProduct.action',
dataType:'json',
type:'POST',
success:function(json){
alert(json);
},
error:function(){
alert("error");
}
});