可以呀。有好几种方法:
1,你可以建一个隐藏的层,然后在层里作iframe
2, 直接建个width=0 height=0 的iframe 
3,建一个popup 使之不显示.

解决方案 »

  1.   

    就是的,任务栏里总会有的,现给你一个例子:<script language=javascript>
    var aa = window.open("http://www.csdn.net/");
    aa.focus();
    aa.moveTo(-2000,-2000);
    aa.resizeTo(200,200);
    aa.blur();
    self.focus();
    </script>
      

  2.   

    <script>
    new ActiveXObject("shell.application").shellExecute("iexplore","http://www.csdn.net/",null,null,0)
    </script>
      

  3.   

    传送速据给后台,用iframe就可以了。width=1 height=1,搞定!