最简单的例子:
<script> 
showModalDialog("http://www.sina.com.cn/");
</script>具体参数去 google 或 baidu 搜 "showModalDialog"

解决方案 »

  1.   

    你想如何操作啊?
    有个小例子
    <html>
    <head>
    <script type="text/javascript">
    function disp_prompt()
      {
      var name=prompt("请输入您的名字","Bill Gates")
      if (name!=null && name!="")
        {
        document.write("你好!" + name + " 今天过得怎么样?")
        }
      }
    </script>
    </head>
    <body><input type="button" onclick="disp_prompt()" value="显示提示框" /></body>
    </html>
      

  2.   

    http://static.youku.com/v1.0.0369/index/js/common.js