상세 컨텐츠

본문 제목

getParam URL

C#

by happynuri 2022. 4. 8. 11:18

본문


window.getParameterByName = function (name){
    name = name.replace(/][/[]/, "\\["].replace(/[\]]/,"\\]");
    var regex = new RegExp(),
    results = regex.exec(location.search);
    return results === null ? "" :decodeURIComponent(results[1].replace(/\+/g, " "));
}

관련글 더보기

댓글 영역