1. 是
2. document.all.linkId.click()

解决方案 »

  1.   

    location 当前文档的urlwindow.location.href='index.jsp'
    <==>
    window.location='index.jsp'
    <==>
    location='index.jsp'
      

  2.   

    <A href="window.location='index.jsp'">LINK</A>
    <==>
    <A href="index.jsp">LINK</A>
      

  3.   

    <html>
    <head>
    <title>等待5秒后跳转到www.csdn.net</title>
    <meta http-equiv="refresh" content="5;URL=http://www.csdn.net">
    </head>
    <body>
    </body>
    </html>
      

  4.   


    window.open()window.location.href='index.jsp'
    self.location='index.jsp'
    opener.location='index.jsp'
      

  5.   

    location 是windows窗口内的一个对像,它主要功能是从当前的网页导向另外
    一个网页,href是它的一个属性.通过它可以导向另外一个网页同时也刷新了此网页.
      

  6.   

    window.location.href='index.jsp'
    <==>
    window.location='index.jsp'
    <==>
    location='index.jsp'將當頁面跳轉到指定頁面