FileUpLoad控件JS取值问题 fileupload控件属性

//判断浏览器类型

var isIE = (document.all) ? true : false;

var isIE7 = isIE &&(navigator.userAgent.indexOf('MSIE 7.0') != -1);

var isIE8 = isIE &&(navigator.userAgent.indexOf('MSIE 8.0') != -1);

var file = document.getElementByIdx_x("fupFile");

var path = "";

if (isIE7 || isIE8) {

file.select();

path = document.selection.createRange().text;

document.selection.empty();

}

else

{

path=file.value;

}

<asp:FileUpload ID="fupPhoto" runat="server"onpropertychange="ShowImage()"/>

FileUpLoad控件JS取值问题 fileupload控件属性

function ShowImage() {

//判断浏览器类型

var isIE = (document.all) ? true : false;

var isIE7 = isIE &&(navigator.userAgent.indexOf('MSIE 7.0') != -1);

var isIE8 = isIE &&(navigator.userAgent.indexOf('MSIE 8.0') != -1);

var file = document.getElementByIdx_x("fupPhoto");

var path = "";

if (isIE7 || isIE8) {

file.select();

path = document.selection.createRange().text;

document.selection.empty();

}

else {

path = file.value;

}

//document.getElementByIdx_x("hidImagePath").value = path;

//document.getElementByIdx_x("btnHiddentPhoto").click();

//

document.getElementByIdx_x("imgPhoto").src = path;

}

  

爱华网本文地址 » http://www.aihuau.com/a/25101011/67466.html

更多阅读

浮点数的取值范围解释_tracy 单精度浮点数取值范围

对浮点数的取值范围有疑问,其实之前一直都没搞清楚。。找到解释,转载如下最近看了IEEE754浮点数的表示方法。在C的参考书中有提到float类型数据的表示范围为-3.4*10^38~+3.4*10^38。究竟如何计算该范围,分析如下:

容斥原理的最值问题 三集合容斥原理

【例】甲、乙、丙同时给100盆花浇水,已知甲浇了78盆,乙浇了68盆,丙浇了58盆,那么3人都浇过的花最少有()盆? A.4B.5 C.6 D.7【答案及解析】A。法一:结合容斥原理比较抽象的一类构造问题。当题干问的是AnBnC的最小值时,该类型题做题套路较简

关于理正深基坑软件的使用问题及答复 理正深基坑7.0教程

关于理正深基坑软件的使用问题及答复北京理正软件设计研究院有限公司:我公司是贵公司开发的《理正深基坑支护结构设计软件》(F-SPW4.0)的正版用户。我公司设计人员在使用此软件的过程中,对软件中的部分参数的取值有疑问,恐影响到对软件

CSS定义页面背景图片的位置 css定义背景图片

背景图片的位置属性,background-position属性是不可继承的属性。其语法结构如下:  background-position:长度值/百分比值/top/left/bottom/right/center;  background-position属性的取值的数目和其他属性有所不同。我们来看一个

声明:《FileUpLoad控件JS取值问题 fileupload控件属性》为网友情詩濫分享!如侵犯到您的合法权益请联系我们删除