호스트명 가져오기
페이지 정보
작성자
본문
function fnGetHost() {
var Dns;
Dns = location.href;
Dns = Dns.split("//");
Dns = "http://" + Dns[1].substr(0, Dns[1].indexOf("/"));
return Dns;
}
var Dns;
Dns = location.href;
Dns = Dns.split("//");
Dns = "http://" + Dns[1].substr(0, Dns[1].indexOf("/"));
return Dns;
}
댓글목록
등록된 댓글이 없습니다.