Heim >Web-Frontend >js-Tutorial >JS获取url链接字符串 location.href_基础知识

JS获取url链接字符串 location.href_基础知识

WBOY
WBOYOriginal
2016-05-16 17:07:401226Durchsuche

js获取url链接字符串:location.href

可以对其进行截取,从而获取传送的参数,常用如下:

location.href.indexOf("?")------获取?的index值。

注意:这里的location.href可不是指的现在地址栏里的地址,而是页面实际的地址。

另外,一些题外话:

C#中获取字符所在位置的索引,也是用IndexOf来获取。

sqlserver中获取索引,就不同了:

第一种:

select * from dbo.users where CharIndex('2',mainsubjects)>0

第二种:
select * from dbo.users where patIndex('%2%',mainsubjects)>0

我使用通过判断栏目,来确定广告是否应该显示:

只有http://www.jb51.net/codes/目录的内容才显示广告:

复制代码 代码如下:

if(location.href.indexOf("http://www.jb51.net/codes/")>-1){
alert('ok');
}
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn