html调用js提示方法名 is not defined处理方法
时间:2018-08-08 15:57:10
收藏:0
阅读:570
-
解决办法(方法名 is not defined):
dosave=function(){
alert("方法名在前");
}
下面这种写法有时候会出现错误:
function dosave(){ alert("方法名在后"); }
原文:https://www.cnblogs.com/wanghaokun/p/9443329.html
评论(0)