$.mobile.path.isSameDomain()
2つのURLが同じドメインを指しているかどうかを判定するユーティリティ関数です。
引数
url1
string, 必須- 比較するURLその1
url2
string, 必須- 比較するURLその2
戻り値
同じドメインであれば true を、異なれば false を返します。
サンプル
次のコードは true を返します。
var same = $.mobile.path.isSameDomain("http://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
次のコードは false を返します。
var same = $.mobile.path.isSameDomain("file://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
次のコードは false を返します。
var same = $.mobile.path.isSameDomain("https://foo.com/a/file.html", "http://foo.com/a/b/c/test.html");
次のコードは false を返します。
var same = $.mobile.path.isSameDomain("http://foo.com/a/file.html", "http://bar.com/a/b/c/test.html");