首页上一页 1 下一页尾页 1 条记录 1/1页
java web开发实例大全 实例262 TypeError: document.selection is undefined
发表在JavaWeb图书答疑
2016-08-09
是否精华
是
否
版块置顶:
是
否
var file = document.getElementById("filepath");
var filePath;
file.select();
try{
filePath = document.selection.createRange().text;//获得文件的本地路径
}
finally{
document.selection.empty();
}
用firefox运行 ,在doucument.selection.empty();中报错,文件名称和路径不㫫示,
用IE,也不显示,
filePath = document.selection.createRange().text;//获得文件的本地路径是不是IE相关
在firefox中用 file.files.item(0).getAsDataURL();替换也不行
实例260中也存在同样的问题,
var filePath;
file.select();
try{
filePath = document.selection.createRange().text;//获得文件的本地路径
}
finally{
document.selection.empty();
}
用firefox运行 ,在doucument.selection.empty();中报错,文件名称和路径不㫫示,
用IE,也不显示,
filePath = document.selection.createRange().text;//获得文件的本地路径是不是IE相关
在firefox中用 file.files.item(0).getAsDataURL();替换也不行
实例260中也存在同样的问题,