总结:
模块JS文件书写方式:
Var moduleJS= function(){ Var a = null;//内部变量,外部不能使用 Function A(){ …//内部函数,外部不能使用} This.GetData =function() { …//加this,表示将此函数开出去,向外部提供访问本JS文件数据的接口 Return a;}}
HTML页中调用模块JS文件
<script type="text/javascript"> var table = null; $(document).ready(function() { table = new main("#main"); }); $("#getDate").bind("click", function () { //getCurrentDate alert(table.getCurrentDate()); }); 《script》