使用 asp.net 母版页突出显示选定的 jquery 选项卡
我在我的 asp.net 网站的多个 asp.net 页面(First.aspx、second.aspx、Third.aspx)中使用 jquery 选项卡(第一、第二、第三),并且在每个页面中我都编写 ul、li 代码。 例如,在 First.aspx 页面中,我在“ul”标签内编写以下代码
<li class="current"><a href="#First">First tab</a></li>
<li><a href="Second.aspx">Second tab</a></li>
<li><a href="Third.aspx">Third tab</a></li>
类似地,在 secondary.aspx、Third.aspx 页面中,我使用 Class="current" 来突出显示所选选项卡。最近我们计划移动到母版页。所以母版页应该包含选项卡的 ul,li 代码。但问题是我不明白如何将 class="current" 应用于所选选项卡,在母版页的情况下页。有人可以帮忙吗?
提前致谢。
I am using jquery tabs(First,Second,Third) in multiple asp.net pages (First.aspx, second.aspx,Third.aspx) in my asp.net website and in each page i am writing the ul,li code.
For example in the First.aspx page I am writing the following code inside the 'ul' tag
<li class="current"><a href="#First">First tab</a></li>
<li><a href="Second.aspx">Second tab</a></li>
<li><a href="Third.aspx">Third tab</a></li>
Similarly in the second.aspx,Third.aspx pages i am using the Class="current" to highlight the selected tab.Recently we have planned to move to Master pages.So the master page should contain the ul,li code for the tabs.But the problem is that I do not understand how to apply the class="current" to the selected tab,in the case of the master page.Could someone please help?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在母版页中编写一个 JavaScript 函数来设置选项卡上的当前类。然后,每个页面在加载时都可以调用该函数来设置当前页面。
类似于:
在 Second.aspx 中,例如:
Write a javascript function in your master page to set the current class on a tab. Each page can then call that function when it's loaded to set the current page.
Something like:
and in Second.aspx, for example: