parent.eventright.window.location="eventright.asp?cnd="+cnd+"&key="+key;如果还不行 就先用个变量构造好var curl="eventright.asp?cnd="+cnd+"&key="+key;
parent.eventright.location=curl; //我怀疑不必写window@_@

解决方案 »

  1.   

    parent.eventright.window.location.replace('eventright.asp?cnd='+cnd+'&key='+key)
      

  2.   


    replace 才是方法,location 代表地址,设定它等于某个地址。
      

  3.   

    就是,你如果想直接改变当前的location那么用:location=(//your new url string)或者用版主说的location 的方法 replace(//your new url string)懂了没?
      

  4.   

    parent.eventright.window.location.href('eventright.asp?cnd='+cnd+'&key='+key)
      

  5.   

    parent.eventright.window.location='eventright.asp?cnd='+cnd+'&key='+key
    不小心写错了