你用firefox浏览器打开它的页面,在firefox浏览器上安装自带的firebug插件,这个插件是开发时用来调试js用的,你可以通过它看到js。
<SCRIPT LANGUAGE="JavaScript"><!--
47var gCurrentCss = "", gCurrentPath = "", gCurrentStyle = null;
48var gIsDebug = false;
49var gConfigUrl = "urlconfig_v3.xml";
50function fLoadStyle(){
51 var styles = ["http://p.mail.163.com/js31style/lib/0807161641/cmcss/", "/a/h/js3/"];
52 gCurrentPath = styles[1];
53 var sIndexUrl = "";
54 if(/develop/.test(location.href)){
55 sIndexUrl = "/a/h/js3/index_debug.htm";
56 styles = ["http://p.mail.163.com/js31style/lib/day4replace/cmcss/", "/a/h/js3/"];
57 gIsDebug = true;
58 gConfigUrl = "urlconfig.xml";
59 }else{
60 sIndexUrl = "/a/f/js3/0807161641/index_v13.htm";
61 }
62 gIndexUrl = sIndexUrl;
63 var cssFile = {
64 "vip.163.com" : "163_purple_s.css",
65 "163.com" : "163_blue_s.css",
66 "126.com" : "126_green_s.css",
67 "188.com" : "188_gold_s.css",
68 "yeah.net" : "yeah_blue_s.css"
69 };
70 for(c in cssFile){
71 if(new RegExp(c).test(location.href)){
72 styles[0] += cssFile[c];
73 break;
74 }
75 }
76 gCurrentCss = styles[0];
77 gCurrentStyle = styles;
78
79 var sHtml = '<frameset rows="*,100%" border=0>' +
80 ' <frame name="index" id="index" src="'+ top.gIndexUrl +'" frameborder=0>' +
81 ' <frame name="template" id="template" src="/a/p/servdata.html'+ location.search +'" frameborder=0 noresize scrolling=no>' +
82 ' </frameset>';
83 document.write(sHtml);
84};
85fLoadStyle();
86
87//--></SCRIPT>