jQuery Isotope hash-history:美化哈希 URL
我正在使用 同位素 和哈希历史记录。它工作得很好,但我对 URL 不满意 - 我想简化 &把它清理干净。
目前使用:
var href = $this.attr('href').replace( /^#/, '' );
var option = $.deparam( href, true );`
在此标记上:
<li><a href="#filter=.work/">Work</a></li>
那么,我的问题:如何使其与以下标记一起使用?
<li><a href="#/work/">Work</a></li>
我只使用过滤器,所有其他同位素选项都被锁定,所以我希望删除对过滤器的引用。
提前致谢!
I'm using Isotope with Hash History. It works great, but I'm not happy with the URL - I'd like to simplify & clean it up.
Currently using:
var href = $this.attr('href').replace( /^#/, '' );
var option = $.deparam( href, true );`
On this markup:
<li><a href="#filter=.work/">Work</a></li>
So, my question: how can I make it work with the following markup?
<li><a href="#/work/">Work</a></li>
I'm only using filters, all other Isotope options are locked down, so I'm hoping to remove the reference to filters.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用这个:
我意识到 * 之后将不起作用。因此,您需要添加另一个类/数据过滤器来显示所有内容。
I am using this:
I realised that * will not work after this. So you need to add another class/data-filter to show all.