我正在尝试使用jQuery显示一个asp:ModalPopupExtender,但没有任何成功。这就是我所拥有的:
ASP.NET
<asp:ModalPopupExtender BehaviorID="confirmPopup" ID="confirmPopup" runat="server" />
JAVASCRIPT
function ShowConfirmPopup() {
var _id = '#<%= confirmPopup.ClientID %>';
var modal = $find(_id);
modal.show();
}
modal
总是等于null
,因此弹出窗口永远不会显示。我做错了什么?
答案 0 :(得分:5)
$find()不是jQuery的一部分,而是ASP.NET AJAX的一部分。因此,您不应在行为标识前加上哈希符号前缀:
function ShowConfirmPopup()
{
var modal = $find("confirmPopup");
modal.show();
}