使片段标识符与基一起工作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使片段标识符与基一起工作相关的知识,希望对你有一定的参考价值。
/** * Make fragment identifiers work with base */ jQuery(function($) { $("a[href^=#]").click(function(e) { e.preventDefault(); window.location.hash = this.href.substr(this.href.indexOf("#") + 1); }); }); /** * Make fragment identifiers work with base and jqueryui-tabs */ jQuery(function($) { $("a[href^=#]").not(".ui-tabs-nav a").click(function(e) { e.preventDefault(); window.location.hash = this.href.substr(this.href.indexOf("#") + 1); }) });
以上是关于使片段标识符与基一起工作的主要内容,如果未能解决你的问题,请参考以下文章
从 AngularJS url 中删除片段标识符(# 符号)