好像不能这样写。
第一个: display:none的元素是不会被提交的(好像是)
第二个:form1是form的id吧,应该是用标准写法document.getElementById('form1').submit(),后面的file.click()也是相同的道理。
第三个:submit()事件不会触发 submit 按钮的file.click()的。同时,点击submit按钮的时候表单就会提交,绑定在submit按钮上的事件是在表单提交后运行的,因此不会达到你预期的目的。
你试试看
<div style="display: none"><input type="file" id="file" onchange="document.getElementById('form1').submit()" name="excelFile"/></div><input type="button" onclick="document.getElementById('file').click()" value="浏览" />
你可向一个设备或从一个设备中复制文件,复制一个文件或目录到设备或模拟器上:
adb push <source><destination></destination></source>
如:adb push test.txt /tmp/test.txt
从设备或模拟器上复制一个文件或目录:
adb pull <source><destination></destination></source>
如:adb pull /addroid/lib/libwebcore.so .