これが機能しない理由がわかりません:
var myurl = "http://domain.com";
var currenturl = $(location).attr('href');
if (myurl == currenturl) {
...
myurl と currenturl はどちらも同じですが、if ステートメントのスクリプトは実行されません。
編集:
$(document).ready(function(){
var myurl = "http://domain.com";
var currenturl = window.location.href;
//alert(currenturl);
if (myurl === currenturl) {
alert('should see this');
} else {
}
});
解決:
$(document).ready(function(){
var myurl = "http://domain.com/"; // see the slash at the end
if (myurl == location.href) {
alert('that ss the same page');
} else {
}
});
なにか提案を?ありがとう。