使片段标识符与基一起工作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使片段标识符与基一起工作相关的知识,希望对你有一定的参考价值。

  1. /**
  2.  * Make fragment identifiers work with base
  3.  */
  4. jQuery(function($) {
  5. $("a[href^=#]").click(function(e) {
  6. e.preventDefault();
  7. window.location.hash = this.href.substr(this.href.indexOf("#") + 1);
  8. });
  9. });
  10.  
  11.  
  12.  
  13.  
  14. /**
  15.  * Make fragment identifiers work with base and jqueryui-tabs
  16.  */
  17. jQuery(function($) {
  18. $("a[href^=#]").not(".ui-tabs-nav a").click(function(e) {
  19. e.preventDefault();
  20. window.location.hash = this.href.substr(this.href.indexOf("#") + 1);
  21. })
  22. });

以上是关于使片段标识符与基一起工作的主要内容,如果未能解决你的问题,请参考以下文章

跨域访问方法介绍--使用片段识别符传值

从 AngularJS url 中删除片段标识符(# 符号)

如何从 URL 获取片段标识符(哈希 # 后的值)?

在 PHP 重定向期间处理片段标识符

有没有办法在使用 Asp.Net MVC ActionLink、RedirectToAction 等时包含片段标识符?

Linkedin OAuth 2.0 重定向 URL 不能包含片段标识符 (#)