document.title="";in childWindow .

解决方案 »

  1.   

    <input type=button value=mm onclick="document.title='meizz'"> 本页面finwin.document.title = "meizz";
      

  2.   

    新打开的窗口里面不是有HTML吗
    在新窗口的代码里加上<title>aaaa</title>就可以了
      

  3.   

    赞同meizz(梅花雪) 兄的意见
    这样应该是可行的,要是再不行的话,可以这样:
    先在子窗口中放一个JS函数:
    function changetitle(strtitle) {
       document.title=strtitle;
    }
    在父窗口中这么引用:
    childwinname.changetitle("wintitle");
      

  4.   

    关键是我现在不能修改 需要打开的页面的内容 这样改动的动作太多 很多页面 太烦
     我现在的系统的页面都是通过一个接口页面打开的 
     open(url,winname,'') 中的URL是动态的 在不改变URL内容的情况下 修改TITLE
      

  5.   

    finwin=windowopen(url,winname,'');
    if(finwin!=null){
        finwin.document.title="";
    }
      

  6.   

    不好意思,少写了一个.
    var newwin;
    newwin=window.open(url,winname,'');
    if(newwin!=null){
        finwin.document.title="";
    }
      

  7.   

    var newwin;
    newwin=window.open(url,winname,'');
    if(newwin!=null){
        newwin.document.title="";
    }