根据当前正在查看的页面隐藏按钮
我不知道我在逻辑上是否正确,但我遇到的情况是,我有一组共享相同“页眉”和“页脚”部分的网页。当用户位于“主页”时,他可以单击出现在“主页”上的“齿轮”图标“标题”部分转到“设置”页面。一旦用户导航到“设置”页面,我想隐藏此“齿轮”按钮,因为用户已经位于“设置”页面上。由于我有通用的“页眉”和“页脚”部分,我不清楚如何实现这一点?有人可以给出实现相同目标的提示吗?
I dont know if I am logically correct,but i have a situation where i have set of web pages sharing same 'Header' and 'Footer' section.When user is on 'Home page' he can click on 'Gear' icon present on 'Header' section to go to "Settings" page. Once user navigates to "Settings" page I want to hide this 'Gear' button as user is already on the 'Settings' page. As I am having Common 'Header' and 'Footer' sections,I am unclear about how to achieve this? can anybody give a hint for achieving the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为所有要显示或隐藏的按钮分配 id 和类。然后在每个页面上,您可以使用 Jquery 来隐藏按钮。
例如,
$("#button2").hide()
You can assign ids and classes to all the buttons you wish to show or hide.Then on each page, you could use Jquery to hide the buttons.
For example,
$("#button2").hide()
我可以逻辑地帮助你....window.location将使用javascript为你提供当前页面,并假设图标具有特定的id,将位置与你想要隐藏的页面地址相匹配,如果两者都匹配使用CSS或隐藏图标否则 DOM 使其可见。
好吧..没看到你想要JQuery..有一些简单的功能可用...
i can help you logically....window.location will give you the current page using javascript and assuming that icon have specific id, match the location with the page address where you want to hide, if both matches hide the icon using CSS or DOM else make it visible.
ok..didnt see you wanted for JQuery..there are some simple functions available...