도메인 체크

by 조쉬 posted Dec 22, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

// 곧바로 현재 페이지 주소 출력
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);