关于Uncaught TypeError: type is not a function at HTMLAnchorElement.onclick (indexjsp:71)的解决

今天碰到一个问题,javascript中的函数始终调用不成功,使用谷歌浏览器调试的过程中报了这样的一个错误。
Uncaught TypeError: type is not a function at HTMLAnchorElement.onclick (indexjsp:71)
 
我的html 代码为
 
尝试后的解决方案为:
修改onclick 里面的函数名字,将上面的type() 改为 imgT ype() 就好了
 
以下是思考过程 
script 为
function type(value) {
      var strType = "";
if(value == 1){
strType =  document.getElementById("scatter").innerHTML;
}else if(value ==2){
strType = document.getElementById("pie1").innerHTML;
}else{
strType = document.getElementById("pie2").innerHTML;
}
$("#imgChoice").html("" + strType );
}
 
代码会报错
Uncaught TypeError: type is not a function at HTMLAnchorElement.onclick (indexjsp:71)
 
探索发现, type()函数名与标签的 type属性冲突,改掉函数名就好了。

你可能感兴趣的:(关于Uncaught TypeError: type is not a function at HTMLAnchorElement.onclick (indexjsp:71)的解决)