この例のテスト URL: http://www.mystudy.cn/web/index.aspx
1. C# を使用して現在のページの URL を取得します
string url = Request.Url.AbsoluteUri; //结果: <a href="http://www.mystudy.cn/web/index.aspx" target="_blank">http://www.mystudy.cn/web/index.aspx</a> 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
上記は、現在のページの URL サンプル コードを取得するための C# のコンテンツです。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。