无法在javascript中获取modalpopup的ID

发布于 2024-11-02 11:31:39 字数 370 浏览 1 评论 0原文

我的页面中有一个更新面板。但模式弹出窗口位于该更新面板之外。 当我尝试使用 document.getElementById 或 $get 或 $find 从 javascript 获取模态弹出窗口时,它返回 null,即它找不到该模态弹出窗口。

更新面板和模式弹出窗口的大致结构位置

<update panel>
</update panel>

<modal popup>
</modal popup>

<update panel>
</update panel>

<java script>
</java script>

如何解决此问题。

I have an update panel in my page. But modal popup is outside of that update panel.
When i try to get modal popup from javascript either using document.getElementById or $get or $find , it returns null, i.e. it cannot find that modal popup.

rough structural position of update panel and modal popup

<update panel>
</update panel>

<modal popup>
</modal popup>

<update panel>
</update panel>

<java script>
</java script>

How to resolve this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸印温柔 2024-11-09 11:31:40

这对我来说效果很好。

 var ModalAction = '<%= ActionModalPopup.ClientID %>';
 $find(ModalAction).hide();

This work well for me.

 var ModalAction = '<%= ActionModalPopup.ClientID %>';
 $find(ModalAction).hide();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文