使用 jquery 隐藏 url 标签
我需要代码来隐藏 jQuery 中 url 中的主题标签;我正在开发 OnePageSite,我希望在单击链接时获得“www.mysite.it”而不是“www.mysite.it/index.php#hashtag”。 这是Mootools 1.x的一段代码;有没有办法用 jQuery 来做同样的事情? 先感谢您。 此致。
if(window.location.href.indexOf('#')>-1) {
window.location.replace(window.location.href.substr(0,window.location.href.indexOf('#')));
}
I need the code to hide the hashtag in the url in jQuery; I'm working on a OnePageSite and I wish to obtain "www.mysite.it" and not "www.mysite.it/index.php#hashtag" when clicking on a link.
This is a piece of code for Mootools 1.x; is there a way to make the same with jQuery?
Thank you in advance.
Best regards.
if(window.location.href.indexOf('#')>-1) {
window.location.replace(window.location.href.substr(0,window.location.href.indexOf('#')));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该代码是 JavaScript,完全不依赖于任何 MooTools 函数,您可以在使用(或不使用)任何框架的情况下使用它。
That code is JavaScript and not at all dependent on any MooTools functions, you can use it with (or without) any framework.