JS_自执行函数和全局渲染
HTML:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>标题标签</title> <script src="js/index.js"></script> <script> first(); // 直接调用全局对象window中的first方法。 </script> </head> <body> </body> </html>
JS:
// 自执行函数:房子多个js中函数重名,造成调用冲突
(function(){
var qqq = "wdc";
var hello = function(){ // 将函数赋值给变量hello
alert("hello " + qqq);
}
window.first = hello; // 将变量hello赋值给全局对象window下面的first方法
})();