0
我有這個代碼,用戶可以上傳圖片。它工作得很好,但用戶可以提交無限制的圖片,我想限制四個。添加圖像輸入與jquery限制爲四
當用戶到達四個輸入字段時,他們將不被允許添加任何輸入。
<script type="text/javascript">
function addItems()
{
var table1 = document.getElementById('tab1');
var newrow = document.createElement("tr");
var newcol = document.createElement("td");
var input = document.createElement("input");
input.type="file";
input.name="image[]";
newcol.appendChild(input);
newrow.appendChild(newcol);
table1.appendChild(newrow);
}
function remItems()
{
var table1 = document.getElementById('tab1');
var lastRow = table1.rows.length;
if(lastRow>=2)
table1.deleteRow(lastRow-1);
}
</script>
<form method="post" action="" enctype="multipart/form-data">
<table align="center" border="0" id="tab1">
<tr>
<td width="218" align="center">
<input type="file" name="image[]" /></td>
<td width="54" align="center">
<img src="Button-Add-icon.png" alt="Add" style="cursor:pointer"
onclick="addItems()" /></td>
<td>
<img src="Button-Delete-icon.png" alt="Remove" style="cursor:pointer"
onclick="remItems()" /></td>
</tr>
</table>
<table align="center" border="0" id="tab2">
<tr><td align="center">
<input type="submit" value="Upload" name="upload" /></td></tr>
</table>
</form>
感謝
你想這樣做jQuery的?你放在這裏的代碼完全使用傳統的JavaScript。請澄清。 – raddykrish
爲'addItems()'添加一個支票,以查找表中當前輸入的數量。 – dnagirl
我甚至沒有在你的代碼中看到一個表單。 – j08691