ABOUT ME

-

Today
-
Yesterday
-
Total
-

[Jquery] ajax로 폼 POST 하는 방법
function 2021.05.20 17:43

var param = $("form[name=Form]").serialize(); $.ajax({ url: url, //전송할 url type:"POST", data : param, success:function(result){ alert("전송되었습니다."); } });

[Jquery] Input file 업로드
function 2021.05.20 17:30

$(document).on('change', "#inputFile", function(){ ext = $(this).val().split('.').pop().toLowerCase(); if($.inArray(ext, ['gif', 'png', 'jpg', 'jpeg']) == -1) { resetFormElement($(this)); window.alert('이미지 파일이 아닙니다! (gif, png, jpg, jpeg 만 업로드 가능)'); } else { file = $('#inputFile').prop("files")[0]; blobURL = window.URL.createObjectURL(file); $('#image_show img').attr('src', blobURL); $('#image_s..

[Jquery] input 초기화
function 2021.05.20 17:25

1. input type별 초기화 function clearInputs(target) { $(target).find(':input').each(function () { switch (this.type) { case 'password': case 'select-multiple': case 'select-one': case 'text': $(this).val(''); case 'textarea': $(this).val(''); break; case 'checkbox': case 'radio': this.checked = false; case 'file': $(this).val(''); } }); } 2. Form 초기화 $('form[name=Form]')[0].reset();

[Jquery] 날짜 포맷 변경하기
카테고리 없음 2021.05.20 17:20

function getFormatDate(date){ var new_date = $.datepicker.formatDate("yy-mm-d", new Date(date)); return new_date; }

[Jquery] 카드유효기간 슬래시 적용하기
function 2021.05.20 17:16

$(document).on('keyup','#expiry',function(){ var _slash = this.value; _slash = _slash.replace(/(\d{2})(\d{2})/, '$1/$2'); this.value = _slash; });

Designed by Tistory.