方法1:在点击按钮中添加JS事件,
btn.onclick = ()=>{ //功能代码实现 //最后 return false; };
方法2:将button按钮type属性设置为button即可
<button type='button'>上传图片</button>