我正在尝试使用ajaxtoolkit激活模式弹出窗口。我正在尝试用javascript显示弹出窗口。然而,javascript无法识别元素,尽管在动态页面中创建的一切似乎都很好并且<%= PleaseWaitPopupModal.ClientID%>被正确翻译为相应面板的正确名称。
有没有人知道为什么javascript函数中的x var为null ????
这些代码片段在子页面内部(即他们有一个母版页,因此我被迫使用%=的东西)。
function btnSendClientClick() {
var x = document.getElementById("<%=PleaseWaitPopupModal.ClientID %>");
x.show();
<asp:Button ID="btnSend" runat="server"
OnClientClick="btnSendClientClick()" OnClick="btnSend_Click"
CausesValidation="true" Text="send" />
<asp:Button ID="btnStam3" runat="server" Text="" Style="display: none;" />
<ajaxToolkit:ModalPopupExtender runat="server" ID="PleaseWaitPopupModal" TargetControlID="btnStam3"
PopupControlID="pnlPleaseWait" BackgroundCssClass="modalBackground" DropShadow="false"
RepositionMode="RepositionOnWindowScroll">
</ajaxToolkit:ModalPopupExtender>
<asp:Panel ID="pnlPleaseWait" runat="server" Style="display: none;">
<div style="margin: auto;">
Please wait...
</div>
</asp:Panel>
任何帮助表示赞赏。谢谢你提前。
答案 0 :(得分:0)
使用$find()
方法,如下所示:
$find('PleaseWaitPopupModal').show();
和
$find('PleaseWaitPopupModal').hide();
您可能需要做的另一件事是设置一个BehaviourID:
BehaviourID="PleaseWaitPopupModal"