我正在嘗試使按鈕在每次點擊時添加另一個輸入框,但我也希望它在輸入名稱的末尾添加越來越多的數字。我有這個代碼來添加更多的輸入。如何添加具有不同名稱的多個輸入框
<script type="text/javascript">
function addInput()
{
var x = document.getElementById("inputs");
x.innerHTML += "<input type=\"file\" name=\"photo\" />";
}
</script>
我能做些什麼,使之讓每一個新的形式添加,將較高的號碼添加到的名稱=「照片」結束,這樣我可以用我的PHP腳本正確處理圖像的時間?
默認的形式是:
<input type="file" name="photo">
但我想每一個新的輸入時有像這樣的輸出時間的數量添加到照片的末尾。
<input type="file" name="photo">
<input type="file" name="photo2">
<input type="file" name="photo3">
<input type="file" name="photo4">
等
如果你喜歡,我可以給你一個使用jQuery的答案嗎? – 2012-03-30 09:09:53
我現在想通了,謝謝。 – chris 2012-03-30 09:11:30