location 검색 문자열 분석

1831 단어 location
function getQueryStringArgs() {

    // 

    var qs = (location.search.length >0? location.search.substring(1) : "");



    // 

    var args= {};



    // 

    var items = qs.split("&");

    var item = null,

        name = null,

        value = null;



    // args 

    for (var i=0; i<items.length; i++) {

        item = items[i].split("=");

        name = decodeURIComponent(item[0]);// 

        vale = decodeURIComponent(item[1]);// 

        args[name] = value;

    }



    return args;

}

좋은 웹페이지 즐겨찾기