当前位置: 代码迷 >> Web前端 >> window.open() 带有中文的时候 不能定位,直接跳到sougo解决办法
  详细解决方案

window.open() 带有中文的时候 不能定位,直接跳到sougo解决办法

热度:105   发布时间:2012-10-31 14:37:31.0
window.open() 带有中文的时候 不能定位,直接跳到sougo解决方法

项目中,因为使用et-mvc ,使用 Window.open(url) 的时候发现,url 如果有中文就会跳到sougo的查询界面,简单说就是不能定位到url里。

解决方法

使用 window.open() 提交表单的方法来解决,代码

?

    
//printForm 为表单name

    printForm.dwmc_.value = "中文测试";
    printForm.target = "newWindow";
    var win = window.open("about:blank","newWindow","scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");
    win.focus();
    printForm.submit();

?

完美解决

  相关解决方案