`
wuyaiswuya
  • 浏览: 22178 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

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

MVC 
阅读更多

项目中,因为使用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();

 

完美解决

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics