我正在构建一个webapp,用户可以将计算机中的图像插入到 HTML5画布中并随之播放。我已经使用了输入qiute,我尝试过 object .value ,但我一直在得到的是 / fakepath / imagename 即可。
<script>
var image = document.getElementById(input1).value;
document.getElementById(div1).innerHTML = image;
</script>
<body>
<input type="file" id="input1"></input>
<div id="div1"></div>
</body>
我希望只用纯Javascript而不是Jquery来完成。