本實例的測試URL:http://www.mystudy.cn/web/index.aspx
1、通過C#獲取當前頁面的URL
復制代碼 代碼如下:
string url = Request.Url.AbsoluteUri; //結果: http://www.mystudy.cn/web/index.aspx
string host = Request.Url.Host; //結果:www.mystudy.cn
string rawUrl = Request.RawUrl; //結果:/web/index.aspx
string localPath = Request.Url.LocalPath; //結果:/web/index.aspx
2、通過Javascript獲取當前頁面的URL
復制代碼 代碼如下:
var url = document.URL; //結果:http://www.mystudy.cn/web/index.aspx
var href = document.location.href; //結果:http://www.mystudy.cn/web/index.aspx
var host = location.hostname; //結果:www.mystudy.cn