Ext 文件上传问题 ,随便来个人,结贴给分了。
本帖最后由 li164589371 于 2012-11-16 17:02:52 编辑 求教:在不修改ie设置的前提下,Ext在ie怎么获取上传组件文件的真实路径,
{
xtype: 'textfield',
allowBlank: false,
msgTarget: 'side',
fieldLabel: '上传文件',
id: 'filepath2',
width: '85%',
anchor: '85%',
inputType: 'file',
listeners: {'blur': function(){
var path = Ext.getCmp("filepath2").getValue();
alert(path);
}
}
}
var file=document.getElementById('filepath2');
file.select();
document.getElementById('uploadButton').focus();
var p = document.selection.createRange().text;
document.getElementById('uploadName').focus();