URLにハッシュ(#)アンカーリンクがある場合にのみ実行したいjQuery JavaScriptコードがあります。どうやってJavaScriptを使ってこのキャラクターをチェックできますか?私はこれらのようなURLを検出する簡単な包括的なテストが必要です。
基本的には、
if (thereIsAHashInTheUrl) {
do this;
} else {
do this;
}
誰かが私を正しい方向に向けることができれば、それは大いに感謝されるでしょう。
シンプル:
if(window.location.hash) {
// Fragment exists
} else {
// Fragment doesn't exist
}
if(window.location.hash) {
var hash = window.location.hash.substring(1); //Puts hash in variable, and removes the # character
alert (hash);
// hash found
} else {
// No hash found
}
以下を入れてください:
<script type="text/javascript">
if (location.href.indexOf("#") != -1) {
// Your code in here accessing the string like this
// location.href.substr(location.href.indexOf("#"))
}
</script>
URIがドキュメントの場所ではない場合、このスニペットはあなたが望むことをするでしょう。
var url = 'example.com/page.html#anchor',
hash = url.split('#')[1];
if (hash) {
alert(hash)
} else {
// do something else
}
これを試しましたか?
if (url.indexOf("#") != -1)
{
}
(ここでurl
はあなたがチェックしたいURLです、明らかに。)
$('#myanchor').click(function(){
window.location.hash = "myanchor"; //set hash
return false; //disables browser anchor jump behavior
});
$(window).bind('hashchange', function () { //detect hash change
var hash = window.location.hash.slice(1); //hash to string (= "myanchor")
//do sth here, hell yeah!
});
これで問題は解決します。
window.location.hash
ハッシュ識別子を返します
...またはjqueryセレクタがあります。
$('a[href^="#"]')
これは、ハッシュの変更を定期的にチェックしてからハッシュ値を処理する関数を呼び出すためにできることです。
var hash = false;
checkHash();
function checkHash(){
if(window.location.hash != hash) {
hash = window.location.hash;
processHash(hash);
} t=setTimeout("checkHash()",400);
}
function processHash(hash){
alert(hash);
}
ほとんどの人はdocument.locationのURLプロパティを知っています。あなたが現在のページだけに興味があるなら、それは素晴らしいです。しかし問題は、ページ自体ではなくページ上のアンカーを解析できるかどうかということでした。
ほとんどの人が見逃しているように見えるのは、それらの同じURLプロパティが要素を固定するためにも利用可能であるということです。
// To process anchors on click
jQuery('a').click(function () {
if (this.hash) {
// Clicked anchor has a hash
} else {
// Clicked anchor does not have a hash
}
});
// To process anchors without waiting for an event
jQuery('a').each(function () {
if (this.hash) {
// Current anchor has a hash
} else {
// Current anchor does not have a hash
}
});
function getHash() {
if (window.location.hash) {
var hash = window.location.hash.substring(1);
if (hash.length === 0) {
return false;
} else {
return hash;
}
} else {
return false;
}
}
var requestedHash = ((window.location.hash.substring(1).split("#",1))+"?").split("?",1);
これを、任意のURIのような文字列からロケーションプロパティを抽象化するための方法としてここにスローします。 window.location instanceof Location
は真実ですが、Location
を呼び出そうとすると、それは違法なコンストラクタであることがわかります。文字列をDOMアンカー要素のhash
プロパティとして設定することで、query
、protocol
、href
などのものにアクセスできます。これにより、すべてのアドレスプロパティがwindow.location
と共有されます。
これを行う最も簡単な方法は次のとおりです。
var a = document.createElement('a');
a.href = string;
string.hash;
便宜上、私はこれを利用してネイティブのLocation
コンストラクタを文字列を取りそしてwindow.location
のようなオブジェクトを生成するものに置き換えるための小さなライブラリを書きました: Location.js
上記のPartridgeとGarethのコメントは素晴らしいです。彼らは別の答えに値する。どうやら、ハッシュと検索のプロパティは、どのHTML Linkオブジェクトでも利用できます。
<a id="test" href="foo.html?bar#quz">test</a>
<script type="text/javascript">
alert(document.getElementById('test').search); //bar
alert(document.getElementById('test').hash); //quz
</script>
または
<a href="bar.html?foo" onclick="alert(this.search)">SAY FOO</a>
通常の文字列変数でこれが必要になり、jQueryを使用している場合は、これでうまくいくはずです。
var mylink = "foo.html?bar#quz";
if ($('<a href="'+mylink+'">').get(0).search=='bar')) {
// do stuff
}
(しかし、多すぎるかもしれませんが..)
通常、クリックは場所の変更よりも先に行われるため、クリック後はsetTimeOutを実行してwindow.location.hashを更新することをお勧めします。
$(".nav").click(function(){
setTimeout(function(){
updatedHash = location.hash
},100);
});
または場所を聞くことができます。
window.onhashchange = function(evt){
updatedHash = "#" + evt.newURL.split("#")[1]
};
私は jQueryプラグインを書きました それはあなたがやりたいことのようなことをします。
シンプルなアンカールーターです。
これはtrue
またはfalse
を返す単純な関数です(ハッシュタグを持つ/持たない):
var urlToCheck = 'http://www.domain.com/#hashtag';
function hasHashtag(url) {
return (url.indexOf("#") != -1) ? true : false;
}
// Condition
if(hasHashtag(urlToCheck)) {
// Do something if has
}
else {
// Do something if doesn't
}
この場合はtrue
を返します。
@ jon-skeetさんのコメントに基づく.
これは現在のページのURLでこれをテストする簡単な方法です。
function checkHash(){
return (location.hash ? true : false);
}