javascript全局变量封装模块实现代码


Posted in Javascript onNovember 28, 2012

下面的代码是我的测试代码,注释很重要:

/*global window,jQuery,validate_email,masterUI,$,rest*/ 
/** Enable ECMAScript "strict" operation for this function. See more: 
* http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/ 
* http://stackoverflow.com/questions/5020479/what-advantages-does-using-functionwindow-document-undefined-windo 
* Q1: Why are window and document being fed instead of just being accessed normally? 
* A1: Generally to fasten the identifier resolution process, having them as local variables can help (although IMO the performance improvements may be negligible). 
* A2: Passing the global object is also a widely used technique on non-browser environments, where you don't have a window identifier at the global scope, e.g.: 
* (function (global) { 
* //.. 
* })(this); // this on the global execution context is the global object itself 
* A3: Passing window and document allows the script to be more efficiently minified 
* 
* Q2: Why the heck is undefined being passed in? 
* A1: This is made because the undefined global property in ECMAScript 3, is mutable, meaning that someone could change its value affecting your code, for example: 
* undefined = true; // mutable 
* (function (undefined) { 
* alert(typeof undefined); // "undefined", the local identifier 
* })(); // <-- no value passed, undefined by default 
* If you look carefully undefined is actually not being passed (there's no argument on the function call), 
* that's one of the reliable ways to get the undefined value, without using the property window.undefined. 
* 
*/ 
(function(window, document, undefined) { 
"use strict"; 
window.test = { 
init: function () { 
"use strict"; 
alert("ok"); 
} 
}; 
})(window, document);// no undefined parameter here to avoid using mutable window.undefined changed by other guy

1.说明,参考了一篇文章和stackoverflow上的一个帖子
2.(function(){})() 这种代码写在独立的js文件里,当js文件被html加载的时候,该函数就会执行。实际上创建了windows.text对象。
以后html代码就可用test.init的形式调用方法。
测试html部分代码如下:
[plain] view plaincopyprint? 
<head> 
<title>AppEngine SDK</title> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
<script type="text/javascript" src="../../master/script/third_party/jquery-1.8.0.min.js"></script> 
<script type="text/javascript" src="../../master/plugin/jquery-validation-1.9.0/jquery.validate.js"></script> 
<script type="text/javascript" src="../../master/plugin/artDialog4.1.6/jquery.artDialog.js"></script> 
<script type="text/javascript" src="../../master/script/app/test.js"></script> 
<script type="text/javascript"> 
$(document).ready(function() { 
test.init(); 
}) 
</script> 
</head>

3.Jslint会报两个问题,一是关于undefined的,没找到什么好方法,任它抱怨吧。另一格式最后调用方式要改成:
[javascript] view plaincopyprint?}(window, document)); }(window, document));

无所谓了,就任由它吧。只要功能正常就行。
Javascript 相关文章推荐
datePicker——日期选择控件(with jquery)
Feb 20 Javascript
JavaScript高级程序设计 事件学习笔记
Sep 10 Javascript
单击复制文字兼容各浏览器的完美解决方案
Jul 04 Javascript
js中arguments的用法(实例讲解)
Nov 30 Javascript
node.js中的events.emitter.once方法使用说明
Dec 10 Javascript
14个有用的Jquery技巧分享
Jan 08 Javascript
jQuery结合CSS制作动态的下拉菜单
Oct 27 Javascript
详解如何较好的使用js
Dec 16 Javascript
js获取元素下的第一级子元素的方法(推荐)
Mar 05 Javascript
angular.js中解决跨域问题的三种方式
Jul 12 Javascript
小程序scroll-view安卓机隐藏横向滚动条的实现详解
May 16 Javascript
如何在node环境实现“get数据解析”代码实例
Jul 03 Javascript
Javascript Request获取请求参数如何实现
Nov 28 #Javascript
js移除事件 js绑定事件实例应用
Nov 28 #Javascript
js arguments对象应用介绍
Nov 28 #Javascript
web基于浏览器的本地存储方法应用
Nov 27 #Javascript
extjs 04_grid 单击事件新发现
Nov 27 #Javascript
javascript 正则表达式相关应介绍
Nov 27 #Javascript
javascript 二进制运算技巧解析
Nov 27 #Javascript
You might like
php 时间计算问题小结
2009/01/04 PHP
PHP接收App端发送文件流的方法
2016/09/23 PHP
PHP开发之归档格式phar文件概念与用法详解【创建,使用,解包还原提取】
2017/11/17 PHP
七种PHP开发环境搭建工具
2020/06/28 PHP
超棒的javascript页面顶部卷动广告效果
2007/12/01 Javascript
div移动 输入框不能输入的问题
2009/11/19 Javascript
理解Javascript_10_对象模型
2010/10/16 Javascript
jQuery 图片切换插件(代码比较少)
2012/05/07 Javascript
精心挑选的15个jQuery下拉菜单制作教程
2012/06/15 Javascript
JavaScript对象和字串之间的转换实例探讨
2013/04/21 Javascript
你必须知道的JavaScript 中字符串连接的性能的一些问题
2013/05/07 Javascript
JavaScript函数绑定用法实例分析
2017/11/14 Javascript
Javascript的console['']常用输入方法汇总
2018/04/26 Javascript
vue-cli脚手架build目录下utils.js工具配置文件详解
2018/09/14 Javascript
layui table数据修改的回显方法
2019/09/04 Javascript
Echarts实现多条折线可拖拽效果
2019/12/19 Javascript
JavaScript鼠标悬停事件用法解析
2020/05/15 Javascript
Python中文编码那些事
2014/06/25 Python
python字符串编码识别模块chardet简单应用
2015/06/15 Python
详解Golang 与python中的字符串反转
2017/07/21 Python
详解Django+Uwsgi+Nginx的生产环境部署
2018/06/25 Python
Python3如何实现Win10桌面自动切换
2020/08/11 Python
Python容器类型公共方法总结
2020/08/19 Python
python+excel接口自动化获取token并作为请求参数进行传参操作
2020/11/10 Python
HTML5 Canvas中使用用路径描画圆弧
2015/01/01 HTML / CSS
教师师德演讲稿
2014/05/06 职场文书
小学感恩教育活动总结
2014/07/07 职场文书
2014年法制宣传日活动方案
2014/11/02 职场文书
2014年学生党支部工作总结
2014/12/20 职场文书
初中成绩单评语
2014/12/29 职场文书
嘉宾邀请函
2015/01/31 职场文书
毕业论文答辩开场白
2015/05/27 职场文书
领导离职感言
2015/08/03 职场文书
javaScript Array api梳理
2021/03/31 Javascript
再也不用花钱买漫画!Python爬取某漫画的脚本及源码
2021/06/09 Python
MySQL中JOIN连接的基本用法实例
2022/06/05 MySQL