study
jqurey on 이벤트에 액션
intseq
2017. 2. 5. 21:55
$(document).ready(function(){
$(document).on("click",".btn_chk",function(){
$(this).siblings('select').val();
});
$("#btn_add").on('click',function(){
$(".add_category").append("<label><?php echo $select1;?> <input type='text' name='wr_1[]' required class='frm_input required' size='2'> 차 <input type='button' class='btn_chk' value='등록여부체크'></label><br/><br/>");
});
$("#btn_mi").on('click',function(){
$(".add_category label:last").remove();
$(".add_category br:last").remove();
$(".add_category br:last").remove();
});
});