gpt4 book ai didi

javascript - 如何更新位于asp.net iframe之外的ajax updatepanel

转载 作者:行者123 更新时间:2023-11-28 02:36:16 24 4
gpt4 key购买 nike

我有一个 ASPX 文件,其中包含更新面板和 iframe。在iframe中进行一些处理后,我将更新外部的一些值iframe(更新面板内)。

如何从iframe内部更新面板?

最佳答案

首先,您需要添加一段使用 JavaScript 触发 UpdatePanel 的代码。您可以通过在 UpdatePanel 内添加一个隐藏按钮来做到这一点:

<div style="display:none">
<asp:Button ID="DoUpdate" runat="server" ClientIDMode="Static" />
</div>

现在,您可以从 iframe 中找到此按钮并按如下方式运行单击:

<script type="text/javascript">
window.parent.document.getElementById('DoUpdate').click();
<script>

我想在这里指出 ClientIDMode="Static" 必须是静态的,因为从 iframe 中我们无法知道找到此按钮的渲染 id,因此我们将其设为静态以不让它改变, window.parent. 将搜索包含 iframe 的窗口,即 iframe 的父窗口

关于javascript - 如何更新位于asp.net iframe之外的ajax updatepanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13444198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com