<a href="about:blank">空白页</a>何谓"有关于她"

解决方案 »

  1.   

    vivanboy(我是谁?) :
    1。就是,(比如是你吧,你打完一句话以后,对方一时没有说话,你切换到别的页面干别的事去了。就在这时,对方对你说了一句话,要求页面“刷”的一下子跳出来)。
    2。<a href="about:blank">空白页</a>用javascript语句,
      

  2.   

    1.window.focus();
    2.document.open();document.write("<body bgcolor=#ffffff>");
      

  3.   

    window.localtion=about blank;
    好象是这句我也记不得了
      

  4.   

    to qiushuiwuhen(秋水无恨):
      1。这一句怎么用,能用一个具体的例子来解释吗;我没有学过javascriptr的,这一句是什么意思?
      

  5.   

    to qiushuiwuhen(秋水无恨):
        2.document.open();这一句()里面是我的页面吗?
      

  6.   

    qiushuiwuhen(秋水无恨) (  ) 
    这句window.focus();
    是不是在你后台那到新数据时可用php
    if(新对话){
    echo "<script>";
    ehco "window.focus()";
    echo "</script>";
    }
      

  7.   

    1.不可能完全做到。除非你看的其他页面和聊天页面同属于一个ie的子窗口。
    2.
    <script>
    window.open('about:blank','winName','');
    </script>
      

  8.   

    to  vivanboy(我是谁?) :
    1.这个我认为能实现,就是用到“秋水无恨”的这句。
    2。对了,在跳出窗口的时候要求是:无地址栏,无状态栏,无菜单栏,无工具栏的。可控制大小,位置的 。
      

  9.   

    1.不可能实现。不要以为js是神仙。除非...(我上面说过)
    2.<script>
    window.open('about:blank','winName','fullscreen=2');
    </script>
      

  10.   

    <script>
    window.open('about:blank','winName','fullscreen=2,resizable=1');
    </script>
      

  11.   

    to vivanboy(我是谁?):
    2.可是位置仍是无法控制啊?比如说在100,20显示尺寸为 高:300 宽:400的.
      

  12.   

    <script>
    window.open('about:blank','winName','left=100,top=20,height=300,width=400,resizable=1');
    </script>
      

  13.   

    to vivanboy(我是谁?) :
      谢谢你,
    但是我还是有不明白的地方,比如说打开的这个窗口里边是一个现成的1.php文件呢,
      

  14.   

    <script>
    window.open('1.php','winName','left=100,top=20,height=300,width=400,resizable=1');
    </script>
      

  15.   

    象样的问题,我觉得不应该在这里,你可以去js版块去问问。
    还有给你一个js大全的网站:
    http://www.51js.com
    ================================================================
    幻灵
      

  16.   

    to chaing(华凌):
       谢谢,你说的有道理。
    但是,。。`、/。,/,`!,没法表达了。
    我在学php,用到了一点点而已。:-}
      

  17.   

    to vivanboy(我是谁):调用出错:
    //+---------------------------------------+
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.More information about this error may be available in the server error log.--------------------------------------------------------------------------------Apache/1.3.26 Server at amao Port 80
    //+--------------------------------------------------+
      

  18.   

    <a href="about:blank">空白页</a>