我没有使用输入类型文件进行fileupload,而是想使用一个可点击的div来调用普通的fileupload,就像输入一样。
instead of this
<input type="file"/>
I want this
<div>Click to upload</div>
and paste the file path in the div
答案 0 :(得分:1)
主意:
当用户点击div时,调用文件输入上的click事件,当它发生变化时,在div上插入html
div上的
$('#magicdiv').click(function(){
$('#leupload').click();
});
上传文件
$('#leupload').change(function(){
$('#magicdiv').html( $(this).val() );
});