firefox 与IE 下 获得图片预览方法 &时间处理
//
firefox 与IE 下 获得图片预览方法if (obj) { //ie if (window.navigator.userAgent.indexOf("MSIE") >= 1) { obj.select(); // return document.selection.createRange().text; $("#"+srcFile).attr("src", document.selection.createRange().text); } //firefox else if (window.navigator.userAgent.indexOf("Firefox") >= 1) { oFReader = new FileReader(); var oFile = document.getElementById("couponImage").files[0]; oFReader.readAsDataURL(oFile); oFReader.onload = function (oFREvent) { // document.getElementById("couponImageSrc").src = oFREvent.target.result; $("#"+srcFile).attr("src", oFREvent.target.result); }; } }