var param = $("form[name=Form]").serialize(); $.ajax({ url: url, //전송할 url type:"POST", data : param, success:function(result){ alert("전송되었습니다."); } });
$(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..
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();
function getFormatDate(date){ var new_date = $.datepicker.formatDate("yy-mm-d", new Date(date)); return new_date; }
$(document).on('keyup','#expiry',function(){ var _slash = this.value; _slash = _slash.replace(/(\d{2})(\d{2})/, '$1/$2'); this.value = _slash; });