DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> location.search在客戶端獲取Url參數的方法
location.search在客戶端獲取Url參數的方法
編輯:關於JavaScript     
復制代碼 代碼如下:
var id;
function getid()
{
var url=location.search;
var Request = new Object();
if(url.indexOf("?")!=-1)
{
var str = url.substr(1) //去掉?號
strs = str.split("&");
for(var i=0;i<strs.length;i++)
{
Request[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
}
}
id=Request["id"];
document.getElementById('td_fa').innerHTML=id + "頁面信息";
}

這樣就好辦了。。。傳參和.net一樣"http://www.aaa.html?id=1"就可以了。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved