
请将上传的文件限制在300kb以内
<input type=file name="file1"> <input type="button" value="可以显示file的value" onclick="test()"> <input type=button value=另存为 onclick="javascript:document.execCommand('Saveas',false,file1.value)"> <script> function test(){ alert(file1.value) } </script>