gpt4 book ai didi

javascript - 将外部
加载到 Iframe

转载 作者:行者123 更新时间:2023-11-28 08:55:33 27 4
gpt4 key购买 nike

在我的元素中,我使用名为 master.aspx 的母版页在特定页面中,我需要将另一个页面包含到当前页面中,以便我使用 <iframe>为了达成这个。同时通过 urliframe母版页也将加载到 <iframe> 中我怎样才能避免在 iframe 中加载母版页?

我无法避免我调用的页面中的母版页,是否可以调用特定的 <Div><content template>在 iframe 中?

最佳答案

看来你使用的是asp.net,也许你可以尝试编辑.aspx页面的第一行,尝试将以下代码添加到你不想显示母版页的页面。

Theme=""StyleSheetTheme=""

==== 更新 ====

如果你只想在 iframe 中隐藏它,你应该在 url 中传递一个参数,比如 ?theme=none

然后在.aspx.cs中的Page_load函数中处理如下:

protected void Page_Load(object sender, EventArgs e) 
{
if(Request["theme"] == "none"){
Page.Theme = "";
Page.StyleSheetTheme = "";
}
}

关于javascript - 将外部 <Div></Div> 加载到 Iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27142761/

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