// 곧바로 현재 페이지 주소 출력
document.writeln(location.href);
// 변수에 넣어서 출력
var s = location.href;
document.writeln(s);
// 도메인
document.location.href.match(/http[s]*:\/\/([a-zA-Z0-9\-\.]*)/)[1]
var link = document.location.href;
console.log(link);
// 파라미터
var para = document.location.href.split("?");
console.log(para);