我想要一个用户输入文件(Html5)并打印文件的程序。我试过这个: -
<html>
<head>
<script type="text/javascript">
fuction a(){
var s1=document.getElementById("bro").file;
document.write(s1);
</script>
</head>
<body>
<form>
<input type="file" id="bro">
<input type="button" Onclick="a();>
</form>
</body>
</html>
由于某种原因,文件(我插入的照片)没有打印在屏幕上