Rails 3:jquery 使用 AJAX 来切换视图,如何获得链接的焦点状态?
刚刚通过 AJAX 改变了我的观点,但现在我对如何使请求的操作具有 :focus 类型 css 选项感到困惑,以便当用户选择“关于”和 _about 部分加载时,我可以拥有“关于”链接,其样式显示它是“关于”页面。非常感谢!
just got my views to change with AJAX, but now I'm stumped on how to make the action requested to have a :focus type css option so that when a user selects "About" and the _about partial load, I can have the "About" link with a style to show it's the About page. Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在单击的链接上设置一个类,从所有其他链接中删除相同的类。例如:
Set a class on the clicked link, removing that same class from all the other links. For example:
你可以在你的 application_helper.rb 中拥有这样的助手,
然后在你看来你可以
在你的 application.js 中拥有这样的助手我
希望这会有所帮助
you can have a helper like this in your application_helper.rb
then in your view you can have
then in your application.js you can have
i hope this helps