showFile is not a method 的一种解决方法
在jsp页面运行中有时候会出现showFile is not a method 的这种错误,明明就是同样的代码<input type='button' value='查看' onclick='showFile();' id='showFile' name='showFile'/>,有时候会报错,有时候却不会。
操作方法
- 01
将代码<input type='button' value='查看' onclick='showFile();' id='showFile' name='showFile'/>改成<input type='button' value='查看' onclick='show();' id='showFile' name='showFile'/>就好了 原因:1.img 在任何情况下 ID和name 都不能和方法名相同 2.input 在form下ID和name 和方法名相同会报错,在去除form后不会。 3.div,a中ID和name 可以和方法名相同
赞 (0)