posted by 네코냥이 2013. 1. 23. 13:34



function getQuerystring(key, default_)     // 받을 문자열, 없을시 기본값

        {

          if (default_==null) default_="" 

          key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");

          var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");

          var qs = regex.exec(window.location.href);

          if(qs == null)

            return default_;

          else

            return qs[1];

        }