0

我在包含网格的网页上使用jQuery v2.0.1 ,并且页脚有一个“搜索”ImageButton。在 grid_RowCommon 事件中,我将使用以下脚本在弹出窗口中显示搜索结果,当用户单击其中一个搜索结果时,所选结果将返回到父页面的页脚行,弹出窗口将是关闭。我在 IE10 上测试了这个功能,效果很好,直到用户反馈他们在 IE8 底部看到了 javascript 错误。

请帮我。

protected void grid_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "Search")
    {
        TextBox txtNo = grid.FooterRow.FindControl("txtNo") as TextBox;

        System.Text.StringBuilder s = new System.Text.StringBuilder();
        s.Append("<script language='javascript' id='SearchResult'> " );
        s.Append("var WinSettings = 'dialogHeight:400px ; dialogWidth: 550px ;center: Yes ;resizable: No;status: no'; ");
        s.Append("javascript: var windowReturnValue =window.showModalDialog('Search.aspx?car_no=" + txtNo.Text.Trim().ToUpper() + "','',WinSettings);");

        s.Append("$('#" + txtNo.ClientID + "').val(windowReturnValue) ;"); 
        s.Append("</script > ");

        if ((!ClientScript.IsStartupScriptRegistered("SearchResult")))
        {
            ClientScript.RegisterStartupScript(this.GetType(), "SearchResult", s.ToString());
        }                     
    }
}  
4

2 回答 2

0

jQuery 2.x 移除了对 IE8 的支持,改用最新的 1.x 稳定版 jQuery;1.10.2

于 2013-09-25T09:48:45.713 回答
0

Jquery 2.x 放弃了对 IE 8 的支持

供参考,请参阅以下链接

http://jquery.com/browser-support/

于 2013-09-25T09:51:39.000 回答