找不到包含特殊字符的网页

时间:2019-04-04 03:36:08

标签: javascript jquery internet-explorer

在chrome上可以正常工作,但在Internet Explorer上会抛出:“找不到网页”:

enter image description here

如果搜索参数的正常字符(a,b,c,d ...)都可以正常工作。但是,如果使用特殊字符,则只能在Chrome上执行。 如何在Internet Explorer上修复

我的代码如下。

<input id="tbSearch" name="tbSearch" type="text"  value="등록시">
<input id="btnSearch" name="tbSearch" type="button" value="Search">

$("#btnSearch").live("click", function () {
      $("#bz_ifmContent", parent.document).attr("src", "/UI/List.aspx?page=" + page + "&search=" + search);
   }
})

1 个答案:

答案 0 :(得分:1)

您尝试过吗:

$("#btnSearch").live("click", function () {
      $("#bz_ifmContent", parent.document).attr("src", "/UI/List.aspx?page=" + encodeURIComponent(page) + "&search=" + encodeURIComponent(search));
   }
})