如何将“事件”值从html文件传递到js文件。因为在js中,它没有定义事件和openFile变量。
HTML文件:
<div id="canvas" style="width: 100%;height: 1024px">
canvs
</div>
js文件:
<form>
<input type='file' id="poem" accept='text/plain' onchange='openFile(event)' >
</form>
答案 0 :(得分:0)
您需要通过HTML传递this
,例如:
<form> <input type='file' id="poem" accept='text/plain' onchange='openFile(this)'></form>