本文介绍jquery
/js获取当前页面url地址的方法,在jquery与js中获取当前页面url方法是一样的,因为jquery没有自己相关的函数,使用js 的windows方法来获取,相关方法如下:
window
.location
.pathname
window
.location
.href
window
.location
.port
window
.location
.protocol
window
.location
.hash
window
.location
.host
window
.location
.hostname
window
.location
.search
window
.location
avascript判断字符串中是否包含某字符串
,js字符串中查看子字符
indexOf函数方法示例用法:
function IndexDemo(str2
){
var str1
= "BABEBIBOBUBABEBIBOBU"
var s
= str1
.indexOf(str2
);
return(s
);
}
例如博客中的快速评论代码:
var url
= window
.location
.pathname
;
if(url
.indexOf("post") >= 0 ) {
alert('这是文章页面');
}
其他示例:
var url
= window
.location
.href
;
if(url
.indexOf("link") >= 0 ) {
document
.getElementById("nav0").className
= "header_nav_menua";
document
.getElementById("nav1").className
= "header_nav_menub";
}
if(url
.indexOf("tag") >= 0 ){
document
.getElementById("nav0").className
= "header_nav_menub";
document
.getElementById("nav1").className
= "header_nav_menua";
}