a标签传中文后台出现乱码

来源:互联网 发布:淘宝怎么可以买到弩 编辑:程序博客网 时间:2024/05/22 05:00
java 后台
import java.net.URLDecoder;

String type = "";
try {
type = URLDecoder.decode(getPara("type"), "utf-8"); //getPara("type"):接收的值
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}

a标签
var url="${adminPath}/ptm2/tech/submit/uploadUI?path=ptm2/technology/report&suffix=*.doc;*.docx;*.pdf;*.rar;*.zip;*.pdf;&id="+$("[name='submit.id']").val()+"&report="+$("[name='submit.report']").val(); //$("[name='submit.report']").val():中文字体

$.pdialog.open(encodeURI(url),"relTechSubmitUploadUI","上传文件",{width:600,height:400,mask:true});

0 0
原创粉丝点击