javascript 파일 추가
페이지 정보
작성자 미친새 작성일 20-02-21 10:51 조회 18,538 댓글 0본문
//okj 첨부파일 추가
var count = 0;
function addForm(){
var addedFormDiv = document.getElementById(\"addedFormDiv\");
var str = \"\";
str+=\"<input type='file' name='file_up[]' class='text err' size='20'><br>\";
var addedDiv = document.createElement(\"div\");
addedDiv.id = \"added_\"+count;
addedDiv.innerHTML = str;
addedFormDiv.appendChild(addedDiv);
count++;
if(count > 5){ alert('더 이상 입력할 수 없습니다.'); delForm();}
document.fWrite.count.value=count;
}
function delForm(){
var addedFormDiv = document.getElementById(\"addedFormDiv\");
if(count >1){
var addedDiv = document.getElementById(\"added_\"+(--count));
addedFormDiv.removeChild(addedDiv);
}else{
document.fWrite.reset();
}
}
window.onload = function (){
addForm();
};
<input type=\"hidden\" name=\"count\" value=\"0\">
<div id=\"addedFormDiv\"></div><image src=\"../img/plus_btn.jpg\" onclick=\"addForm()\"> <image src=\"../img/minus_btn.jpg\" onclick=\"delForm()\">
var count = 0;
function addForm(){
var addedFormDiv = document.getElementById(\"addedFormDiv\");
var str = \"\";
str+=\"<input type='file' name='file_up[]' class='text err' size='20'><br>\";
var addedDiv = document.createElement(\"div\");
addedDiv.id = \"added_\"+count;
addedDiv.innerHTML = str;
addedFormDiv.appendChild(addedDiv);
count++;
if(count > 5){ alert('더 이상 입력할 수 없습니다.'); delForm();}
document.fWrite.count.value=count;
}
function delForm(){
var addedFormDiv = document.getElementById(\"addedFormDiv\");
if(count >1){
var addedDiv = document.getElementById(\"added_\"+(--count));
addedFormDiv.removeChild(addedDiv);
}else{
document.fWrite.reset();
}
}
window.onload = function (){
addForm();
};
<input type=\"hidden\" name=\"count\" value=\"0\">
<div id=\"addedFormDiv\"></div><image src=\"../img/plus_btn.jpg\" onclick=\"addForm()\"> <image src=\"../img/minus_btn.jpg\" onclick=\"delForm()\">
댓글목록 0
등록된 댓글이 없습니다.