728x90
html
<ul class="__add">
<li>
<input type="file" id="QnA03" name="file_path" class="files" style="width: 231px; height: 46px;">
<button type="button"class="_add" style="vertical-align: sub">์ถ๊ฐ</button>
</li>
</ul>
js
var maxAppend = 1;
$('.__add ._add').on('click',function(){
if(maxAppend >= 3){
alert("ํ์ผ ์
๋ก๋ ์ต๋ ๊ฐ์๋ 3๊ฐ ์
๋๋ค.");
return;
}else{
$('.__add').append('<li><input type="file"name="file_path" class="files"> <button type="button" class="_add" onclick="addDel(this);">์ญ์ </button></li>');
maxAppend ++;
}
});
function addDel(a){
$(a).closest('li').remove();
maxAppend --;
}