日期:2014-05-16 浏览次数:20445 次
/* base.js */ if (javatang== null) var javatang= {}; if (javatang.lang == null) javatang.lang = new function(){ this.sampleText= "This is sample text"; // 设置下面的属性 ... }; /* zh_CN.js */ this.sampleText = "例子";
<!doctype html public "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="gbk" > <head> <meta http-equiv="content-type" content="text/html; charset=gbk" /> <title> Title </title> <script type="text/javascript" src="base.js"></script> <script type="text/javascript" src="zh_CN.js"></script> <script type="text/javascript"> // 下面开始在页面中调用 </script> </head> <body> </body> </html>