摘要: 一、 普通的传统函数表达式,调用执行的时候,既可以放在函数前面,也可以放在后面,只要在文档中,都可以调用。 show(); function show(){ alert("hello"); } 二、匿名函数(这种写法是错的,会报错。) function (){ alert("hello"); } 三 阅读全文
posted @ 2016-09-28 19:21 2350305682 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 一、return的作用:退出函数,返回结果。 二、用法: return; 返回空,直接退出函数。 return false; 返回fals,将中断操作。 return true 返回true,将继续操作。 例子: <html><head><title>return验证测试</title><scrip 阅读全文
posted @ 2016-09-28 12:48 2350305682 阅读(845) 评论(0) 推荐(0) 编辑