前提・実現したいこと
現在「test.html」のリンクがカレント表示されているとして、
そこから「test.html#one」に移動すると、
「test.html#one」だけでなく「test.html」のリンクも一緒にカレント表示されてしまいます。
アンカーリンクだけをカレント表示したいです。
該当のソースコード
$.yuga = { // URIを解析したオブジェクトを返すfunction Uri: function(path){ this.originalPath = path; //絶対パスを取得 this.absolutePath = (function(){ var e = document.createElement('span'); e.innerHTML = '<a href="' + path + '" />'; return e.firstChild.href; })(); //絶対パスを分解 var fields = {'schema' : 2, 'username' : 5, 'password' : 6, 'host' : 7, 'path' : 9, 'query' : 10, 'fragment' : 11}; var r = /^((\w+):)?(//)?((\w+):?(\w+)?@)?([^/?:]+):?(\d+)?(/?[^?#]+)???([^#]+)?#?(\w*)/.exec(this.absolutePath); for (var field in fields) { this[field] = r[fields[field]]; } }, //現在のページと親ディレクトリへのリンク selflink: function (options) { var c = $.extend({ selfLinkClass:'current', parentsLinkClass:'parentsLink', postfix: '_cr' }, options); $('a[href]').each(function(){ var href = new $.yuga.Uri(this.getAttribute('href')); var setImgFlg = false; if ((href.absolutePath == location.href) && !href.fragment) { //同じ文書にリンク $(this).addClass(c.selfLinkClass); setImgFlg = true; } else if (0 <= location.href.search(href.absolutePath)) { //親ディレクトリリンク $(this).addClass(c.parentsLinkClass); setImgFlg = true; } if (setImgFlg){ //img要素が含まれていたら現在用画像(_cr)に設定 $(this).find('img').each(function(){ this.originalSrc = $(this).attr('src'); this.currentsrc = this.originalSrc.replace(/(.gif|.jpg|.png)/g, c.postfix + "$1"); $(this).attr('src',this.currentsrc); }); } }); },
試したこと
$('a[href]').each(function(){
を
$('a[href^="#"]').each(function(){ などに修正してみましたがうまくいきませんでした。
補足情報(FW/ツールのバージョンなど)
あなたの回答
tips
プレビュー