如:
复制代码 代码如下:
var fileName=document.getElementById("filePath").value;
if(null!=fileName){
//alert(fileName);
//进行转码 不然后台会乱码
fileName=encodeURI(fileName);
.........AJAX代码
}
如:
复制代码 代码如下:
var fileName=document.getElementById("filePath").value;
if(null!=fileName){
//alert(fileName);
//进行转码 不然后台会乱码
fileName=encodeURI(fileName);
.........AJAX代码
}