下载个js.chm,里面有详细说明。
http://download.microsoft.com/download/winscript56/Install/5.6/W982KMe/CN/scd56chs.exe

解决方案 »

  1.   

    英文版本的js1.5http://www.csdn.net/Expert/TopicView1.asp?id=942792
      

  2.   

    可是我用的shijavascript,而且英文不好
      

  3.   

    中文Jscript,不过基本是一样的
    http://download.microsoft.com/download/winscript56/Install/5.6/W982KMe/CN/scd56chs.exehttp://lucky.myrice.com/javascriptexam/javascript/js_reference.htm
      

  4.   

    toString()是把一个东西变成字符串,如 var aa=11; 
       aa.toString();
    嘿嘿,aa就是字符串了。
    valueOf() 就是取值吧?俺也不知道eval()就是把括号中的表达式执行(有变量,就算出来)。
    如:eval(window.open("a.html")) ,就开一个窗口。function 就是写一个函数了。如下:Date.prototype.getStringDay=getStringDay;
    为什么引用函数不用加括号?有时候就是不写括号。如:
    window.onload=init;
      

  5.   

    function A(){}
    alert(A);
    Function.prototype.toString=function(){return "<function>"}
    alert(A);var o=new Object();
    alert(o);
    o.toString=function(){return "<toString>"}
    alert(o);
      

  6.   

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    function A(){alert(CallLevel());return 'kk';}
    alert(A);
    alert(A.prototype.toString=A())Function.prototype.toString=function(){return "<function>"}
    alert(A);var o=new Object();
    alert(o);
    o.toString=function(){return "<toString>"}
    alert(o);function CallLevel(){
       if (CallLevel.caller == null)
          return("CallLevel was called from the top level.");
       else
        document.onclick=CallLevel.caller;
          return("CallLevel was called by another function.");
    }alert(CallLevel);
    alert(CallLevel());
    //-->
    </SCRIPT><a href=# onclick=alert(CallLevel())>kk</a>
      

  7.   

    <a href=# onclick=alert(CallLevel())>kk</a>
    #什么东西?
      

  8.   

    #指向页面中的一个锚点,点击该连接将滚动到该锚点位置,这里没有指定页面,就是当前页的锚点,由于没有锚点名,这里就成为一个空链接。href=#a123
      指向本页锚点<a name="a123"></a>
    href=1.htm#a123
      指向1.htm的锚点<a name="a123"></a>
      

  9.   

    valueOf()是基本数据类型的String值
    比如valueOf(12345),值是'12345'
    ================================================================
    把手机变成笔记本的理由:....请看http://wireless2k.com,还需要更多吗?
    移动控制台1.1,免费推广,免费获取注册码中!
    ================================================================