我在包含网格的网页上使用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());
}
}
}