function test()
{
var newwin = window.open("jjj.doc");
newwin.document.title="你要的窗口名";
}
<a href="javascript:void(0)" onclick='test()'>dd</a>

解决方案 »

  1.   

    function test()
    {
    var newwin = window.open("jjj.doc");
    newwin.document.title="新窗口titlebar";
    }
    <a href="javascript:void(0)" onclick='test()'>dd</a>
      

  2.   

    function sendintent(enterpriseid){ window.open("../public/global_intent/intentsend.jsp?enterpriseid="+enterpriseid,"意向发送","toolbar=0,status=0,menubar=0,width=250,height=300,resizable=1,scrollbars=1");}
    其中"意向发送"就是title内容
      

  3.   

    可以啊,把
    function test()
    {
    var newwin = window.open("jjj.doc");
    newwin.document.title="新窗口titlebar";
    }
    放到<script></script>里
      

  4.   

    Tomcat4(Tom) 
    显示的还是窗口默认的值http://localhost:8080/examples/jsp/test/jjj.doc
    而不是“新窗口titlebar“
      

  5.   

    当创建一个新窗口时,该titlebar的制可以改变,其他的好像有问题