我的代码将通过单击添加按钮自动添加在表单中定义的新的类似行。
<html>
<body>
<form>
<input type="text" name="quantity[]" class="input_text" id="pro"/>
</form>
</body>
</html>
现在我想访问quantity[]
javascript 函数中的不同值。
如何quantity[]
使用它的 ID 或名称属性在 javascript 中访问这个不同的值。
<script>
function abc() {
var id = document.getElementById("pro").value;
}
</script>