1.function getPath(obj) {
2. if (obj) {
3. if (window.navigator.userAgent.indexOf("MSIE") >= 1) {
4. obj.select();
5. return document.selection.createRange().text;
6. }
7. else if (window.navigator.userAgent.indexOf("Firefox") >= 1) {
8. if (obj.files) {
9. return obj.files.item(0).getAsDataURL();
10. }
11. return obj.value;
12. }
13. return obj.value;
14. }
15.}
解决了没啊,求获取的方法啊~~~