728x90 jQuery12 jquery click 이벤트 클릭 이벤트 아이디가 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.. 2021. 11. 12. Ckeditor4 placeholder 한 페이지에 여러개의 에디터를 뒀을 때 각자 다른 placeholder를 줘야하는 상황에 사용할 수 있다. 해당 사이트 들어가서 플러그인 다운받고 plugins 폴더에 넣는다! https://ckeditor.com/docs/ckeditor4/latest/features/editorplaceholder.html Editor Placeholder - CKEditor 4 Documentation Learn how to install, integrate and configure CKEditor 4. More complex aspects, like creating plugins, widgets and skins are explained here, too. API reference and examples inclu.. 2021. 11. 8. jquery,javascript select option 변경 jquery 로 셀렉트 옵션 변경하기! $('select[name="color"]').val("info").attr("selected", "selected"); $('select[name="color"]').val('inverse'); javascript로 변경하기 document.getElementsByName('color')[0].value='danger'; 2021. 10. 13. jquery select2 change select2 는 다음 사진처럼 검색 기능이 있는 select 박스이다. 다른 부분을 클릭했을 때 select2의 value를 변경하는 방법 $('.category').val('021').trigger('change'); //class가 category인 요소를 value가 021인 애로 바꿔라. 참고 How to set selected value of jQuery Select2? This belong to codes prior to Select2 version 4 I have a simple code of select2 that get data from AJAX. $("#programid").select2({ placeholder: "Select a Program", allowClear: stackov.. 2021. 9. 28. jquery 특정영역으로 scroll하기 폼체크 할 때 특정 값이 비어있으면 입력해달라고 얼럿을 띄워주면서 해당 항목으로 이동하게끔 하려고 사용했다. $('select[name="test"]').offset().top 로만 이동 시키면 내가 보여주고자 하는 요소 밑부분부터 보여줌. 내가 원한 그림은 아니었다. 그래서 화면의 반만 더 올라가게함! 글솜씨가 없다ㅠ 이해가 안되면 개발자 도구 열고 웹 콘솔에 이런식으로 직접 실행해보면 이해가 될 것이다! 다음과 같이 작성하면 내가 원하는 요소가 중간 부분에 스크롤 되서 나타난다. $('html, body').animate({scrollTop : $('input[name="test"]').offset().top-$(window).height()/2}, 200); 마지막 200이란 숫자는 몇초동안 이동시.. 2021. 9. 15. ajax 사용하기 선택된 체크박스를 서버로 보내기위해 ajax를 사용! var arr_no = new Array(); $("input[name='check_product[]']:checked").each(function () { arr_no.push($(this).val()); }); 위와 같이 배열을 선언하고 체크박스의 벨류를 배열에 넣었다. $.ajax({ url: '/admin/test/action/test.php', data: { arr: arr_no }, method: 'post', success : function(result){ var result2 = JSON.parse(result); alert(result2.msg); location.reload(); }, error:function(e){ console.. 2021. 9. 13. 이전 1 2 다음