母版页中用户控件中的菜单单击无法从内容页中正常工作

发布于 2024-11-06 11:22:15 字数 173 浏览 1 评论 0原文

我在母版页(mainmaster.master)的用户控件(menu.ascx)中有一个菜单。该菜单是动态填充的。

现在我们有一个使用 mainmaster.master 的内容页面有 iframe。现在我想单击母版页中的菜单(依次在用户控制中),即产品 并想在该 iframe 中打开 products.aspx。

I had a menu in user control (menu.ascx) in master page (mainmaster.master). That menu is populated dynamically.

Now we have a content page that uses mainmaster.master has iframe. Now I want to click on menu in masterpage (which in turn is in user control) i.e products
and want to open products.aspx in that iframe.

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

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

发布评论

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

评论(1

幸福丶如此 2024-11-13 11:22:15

您的用户控件、母版页和内容页都呈现为单个 HTML 页面,因此您可以使用客户端脚本来设置 iframe 的源。

类似的东西:

jQuery

$(function() {
   $('.menuItem').click(function(e) { 
      e.preventDefault();
      $('#iframe').attr("src", $(this).attr("href"));
   });
});

HTML

<a href="products.aspx" class="menuItem">Products</a>

<iframe id="iframe" src="default.aspx" />

工作演示

这是 jsfiddle.net 上的一个小演示

Your user control, master page and content page all get rendered to a single HTML page, so you could use client-side script to set the source of the iframe.

Something along the lines of this:

jQuery

$(function() {
   $('.menuItem').click(function(e) { 
      e.preventDefault();
      $('#iframe').attr("src", $(this).attr("href"));
   });
});

HTML

<a href="products.aspx" class="menuItem">Products</a>

<iframe id="iframe" src="default.aspx" />

Working Demo

Here's a little demo on jsfiddle.net.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文