2016 - 01 - 15 동아 일보

1718 단어 js
$(function() {
    var message=GetRequest();
    if(message.message!=null){
        $CommonUI.alert(message.message);
    }
});


function GetRequest() {
   var url = location.search; //  url "?"     
   var theRequest = new Object();
   if (url.indexOf("?") != -1) {
      var str = url.substr(1);
      strs = str.split("&");
      for(var i = 0; i < strs.length; i ++) {
         theRequest[strs[i].split("=")[0]]=decodeURI(strs[i].split("=")[1]);
      }
   }
   return theRequest;
}

//  
function Login() {
    var userName = encodeURI(encodeURI($('input[name="userName"]').val()));
    var password = encodeURI($('input[name="password"]').val());
    if(userName.length>0&&password.length>0){
        //$CommonUI._AJAX_SUCC = false;
        postReq($WEB_ROOT_PATH+ '/login/loginCtrl.htm?BLHMI=login&dto.login.userName=' + userName + '&dto.login.password=' + password, "", succ, err, {skipHidden:false});
    }else{
        alert("  、      !");
    }  
}

location.search  위치 js 중 dom 내장 대상
var theRequest = new Object() 
           

theRequest[BLHMI]   login
theRequest[dto.login.username]   'username'
theRequest[dto.login.password]   'passwoe'
 
  
 
  
var str = url.substr(1); //str =BLHMI=login&dto.login.userName=' + userName + '&dto.login.password=' + password

substr(x,y)
x  문자 의 색인 을 위 한 양수 가 왼쪽 에서 오른쪽으로  0 부터  음 수 는 오른쪽 에서 왼쪽으로.
y 가 캡 처 한 문자 갯 수

좋은 웹페이지 즐겨찾기