欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Uncaught TypeError: upload is not a function at HTMLInputElement.onchange

程序员文章站 2022-04-28 11:21:25
...

js 中标签的id名称不能和方法名一样,

<input type="file" id="upload" onchange="upload()">改为
<input type="file" id="uploadpic" onchange="upload()">