<a href="javascript:void(0)">hello</a>/* * JS中函数void()的运用大体是这种新式; * void()是运算符,对任何值都返回undefined;和typeof运算符号一样可以 void(0) = void 0; * void function main(){}; 申明此函数返回的是 undefined; 没有 return 的函数默认也是返回 undefined ;所以没有写的必要,也上是为了语义化.? * 所以上面链接的形式也可是: javascript:void ‘‘ , javascript:void "1" , javascript:undefined * */
/* * 2013.1.4 * function(){}(); 会运行错误, 如下可以正确被运行. */void function(){ alert(1) }()
原文地址:https://www.cnblogs.com/hanguidong/p/9667970.html
时间: 2024-11-05 20:56:46