2、通過js獲取
thisdloc = document.location;
thisurl = document.url;
thishref = document.location.href;
thissloc = self.location.href;
thistloc = top.location.href;
thisploc = parent.document.location;
thisthost = top.location.hostname;
thishost = location.hostname;
=================
獲取ip
1、asp.net中獲取
string myip,mymac;
system.net.ipaddress addresslist = dns.gethostbyname(dns.gethostname()).addresslist;
if ( addresslist.length>1)
else
myip位址就是伺服器端的ip位址。
獲取客戶端的ip位址,可以使用
//獲取登入者ip位址
string ip = request.servervariables["remote_addr"].tostring();
2、通過js獲取
獲取當前頁面的URL
window location host 返回url 的主機部分,例如 www.com window location hostname 返回www.com window location href 返回整個url字串 window location pathname 返回 a index.php或...
獲取當前頁面的url
獲取當前頁面的url,可以使用window.location.href 如果想進一步獲取到主機名,埠號等可以直接使用 window.location.host 主機名加埠號 window.location.hostname 主機名 window.location.origin 協議主機名埠號 win...
c 獲取當前頁面的url資訊
測試url com 80 aaa a.aspx?id 5 name yh function getquerystring name var reg new regexp name var r window.location search substr 1 match reg if r null re...