это мой код из дополнений и удаление файлов ввода
<span class="file_box"><span><input class="text" type="text" name="emails[]" value="" /><br /></span></span><div style="padding: 0 0 5px 160px;">
<input type="button" class="add" value="+" style="width: 25px; height: 25px; margin: 0 5px 0 0;" onclick="addFile(this);" /><input type="button" class="drop" value="-" style="width: 25px; height: 25px;" onclick="dropFile(this);" disabled="true" />
</div>
и это JS
var FileCount = 1;
function addFile(object){
if(document.getElementById) {
var el = object.parentNode.previousSibling.firstChild;
var newel = el.parentNode.appendChild(el.cloneNode(true));
newel.style.marginLeft = "160px";
FileCount++;
if(FileCount > 1){
object.nextSibling.disabled = false;
}
}
}
function dropFile(object){
if(document.getElementById) {
var el = object.parentNode.previousSibling.lastChild;
el.parentNode.removeChild(el);
FileCount--;
if(FileCount == 1){
object.disabled = true;
}
}
}
Посмотрите, можете ли вы найти для себя что-то