当我用:
      windows.open("http://www.163.com","");
这样的时候为什么不能在新的窗口显示http://www.163.com而是这样如:http://localhost/testpargat/http://www.163.com呢???
请问如何写才可以!!

解决方案 »

  1.   

    用这个
    window.location.href("http://www.163.com")
      

  2.   

    我要的是弹出一个新的窗口来显示!
    就算是这样window.location.href("http://www.163.com")也无法正确显示还是这样:http://localhost/testpargat/http://www.163.com不能浏览到内容!
      

  3.   

    windows.open("http://www.163.com","");
    ====?????
    window.open
      

  4.   

    这样吧,
    windows.open("test.aspx","");
    在test.aspx页里放个frameset或者iframe,然后指定他的url为http://www.163.com
      

  5.   

    window.open('http://www.163.com','','');请在javascript脚本里面写完整的代码及格式.
      

  6.   

    <script>window.open("http://www.163.com","");</script>真受不了,我这是对的啊你的IE有问题?