728x90
아이디가 change 인 요소를 클릭 했을 때 이벤트 캐치!
해당 소스는 특정 버튼을 눌렀을 때 서버에 데이터를 전송 후 결과값을 받기위해 사용한 것이다.
$('#change').on('click',function(){
console.log(arr);
$.ajax({
url:'/~~~~~.php',
data: {
arr: arr
},
dataType: 'json',
method: 'post'
}).done(function (result) {
location.reload();
alert(result.msg);
}).fail(function(e){
console.log(e);
alert(result.msg);
});
});
클래스가 change인 요소를 클릭했을 때!
$('.change').on('click',function(){
})
좀 오래된 jquery 버전이면 아래와 같이 쓸 수 있다.
lilve, bind 등 함수도 있다..
$( document ).delegate('.test .test1', 'click', function(){
});
'study > javascript' 카테고리의 다른 글
팝업창 오늘 하루 보지 않기 쿠키사용 (0) | 2021.12.10 |
---|---|
Ckeditor4 placeholder (0) | 2021.11.08 |
javascript indexOf 몇번째 (0) | 2021.11.01 |
for in for of (for of IE지원 안함) (0) | 2021.10.28 |
fullcalendar data ajax로 가져와 달력에 뿌리기 (0) | 2021.10.14 |
댓글