我不知道为什么这不起作用:
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 {
}
});
有什么建议吗?比。