html调用js提示方法名 is not defined处理方法

  • 解决办法(方法名 is not defined):

dosave=function(){
     alert("方法名在前");  
}  

下面这种写法有时候会出现错误:

function dosave(){  
  alert("方法名在后");  
}  
原文地址:https://www.cnblogs.com/wanghaokun/p/9443329.html