首頁 >web前端 >js教程 >JS取得url連結字串 location.href_基礎知識

JS取得url連結字串 location.href_基礎知識

WBOY
WBOY原創
2016-05-16 17:07:401231瀏覽

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');
}
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn