日期:2014-05-17 浏览次数:20709 次
{
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();