이 예제의 테스트 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
위는 C#의 내용입니다. 현재 페이지의 URL을 가져오는 샘플 코드는 PHP 중국어 사이트를 참고하세요. (m.sbmmt.com)!