html调用js提示方法名 is not defined处理方法
时间:2018-08-08 16:13:59
收藏:0
阅读:2560
-
解决办法(方法名 is not defined):
dosave=function(){ alert("方法名在前"); }
下面这种写法有时候会出现错误:
function dosave(){ alert("方法名在后"); }
评论(0)