JQuery 속성 판단 + JSON 순환 참조 제출

765 단어 jquery

//      
if($('#btn_customer').attr('title').replace(/(^\s*)|(\s*$)/g, "") == "2"){
 //  true
}else{
 //false
}

//checkbox
  if($("#appo").is(":checked")){
     //  true
   }esle{
     //false
   }

//$.post  
var param = {};
$('#currTable').find('input,select').each(function(){
   param[this.name] = this.value;
});
param['ative'] = 'customer';
$.post(url,param,function(data){
	if(data.result == 1){
	  alert('OK');
	}
	if(data == null){
	  alert('NO!');
	}
},'json');


좋은 웹페이지 즐겨찾기