gpt4 book ai didi

javascript - 如何使用 Javascript 获取 HTML 动态用户输入的值

转载 作者:行者123 更新时间:2023-12-02 15:15:42 25 4
gpt4 key购买 nike

我有以下类型的动态用户输入:

  • 费用:<selection>用户将选择 1 个选项
  • 金钱输入:用户输入一些文字。我得到了帮助。

我想要上面给出的这 2 个值。

我想使用 JavaScript 获取这些动态用户输入的值。

这里给出的代码如下:更新:已解决

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border-collapse: collapse;
}
</style>
<script>
function addMore() {
var table = document.getElementById("myTable");
var row = table.insertRow(-1);
var cell1 = row.insertCell(-1);
var cell2 = row.insertCell(-1);

var x = document.getElementById("myTable").rows[1].cells;

cell1.innerHTML = x[0].innerHTML;
cell2.innerHTML = x[1].innerHTML;
}


function removeLast() {
document.getElementById("myTable").deleteRow(-1);
}

</script>
</head>
<body>
<form action="payroll.php" method="post">
<table id="myTable">
<tr>
<th>Costs</th>
<th>Money Input</th>
</tr>
<tr>
<td>
<select class="mySelect" name="DESCR" >
<option disabled="" selected="">Select</option>
<option value="BASIC PAY">BASIC PAY</option>
<option value="GAS BILL">GAS BILL</option>
<option value="CLUB">CLUB</option>
<option value="MEDICINE">MEDICINE</option>
<option value="BANK LOAN">BANK LOAN</option>
</select>
</td>
<td> <input type="text" name="ALAMT"></td>
</tr>
</table>

</form>
<br>
<button onclick="addMore()">Add More</button>
<button onclick="removeLast()">Remove</button>
<button onclick="myFunction()">Try it</button>
</body>
<script>
function myFunction() {

var select = document.getElementById("myTable").rows[1].cells[0].firstElementChild;
var selectValue = select.options[select.selectedIndex].value;
var ocell = document.getElementById("myTable").rows[1].cells[1];
alert("Selected Index: "+selectValue+"\nInput value: "+ocell.firstElementChild.value);


}
</script>
</html>

每次我遇到错误时都使用此代码。但我想要 <option>仅由用户选择的值,而不是所有值。

请建议我如何做到这一点或更多更好的替代方案。如需更多信息,请告诉我。谢谢

最佳答案

您获得了 HTMLTableCellElement 对象,因为您没有指定要从 cells[0] 中获得的内容,应添加 .textContent > 如果您想获取列内的文本:

document.getElementById("myTable").rows[1].cells[0].textContent

或者 .innerHTML 如果您想获取列内的 HTML :

document.getElementById("myTable").rows[1].cells[0].innerHTML
<小时/>

如果您想从用户在“成本”选择中选择的选项中获取所选选项,我建议使用类 .mySelect 代替 id="mySelect"由于 id 在同一文档中应该是唯一的,因此使用 querySelector 例如:

var costs = document.querySelector('#myTable tr:nth-child(2) td:nth-child(1) .mySelect option:checked').value;
var money = document.querySelector('#myTable tr:nth-child(2) td:nth-child(2) input").value;

希望这有帮助。

<小时/>

function addMore() {
var table = document.getElementById("myTable");
var row = table.insertRow(-1);
var cell1 = row.insertCell(-1);
var cell2 = row.insertCell(-1);

var x = document.getElementById("myTable").rows[1].cells;

cell1.innerHTML = x[0].innerHTML;
cell2.innerHTML = x[1].innerHTML;
}


function removeLast() {
document.getElementById("myTable").deleteRow(-1);
}

function myFunction() {
var costs = document.querySelector('#myTable tr:nth-child(2) td:nth-child(1) .mySelect option:checked').value;
var money = document.querySelector('#myTable tr:nth-child(2) td:nth-child(2) input').value;

document.getElementById('result').textContent = costs+' - '+money;
}
table, th, td {
border-collapse: collapse;
}
<form action="payroll.php" method="post">
<table id="myTable">
<tr>
<th>Costs</th>
<th>Money Input</th>
</tr>
<tr>
<td>
<select class="mySelect" name="DESCR" >
<option disabled="" selected="">Select</option>
<option value="BASIC PAY">BASIC PAY</option>
<option value="GAS BILL">GAS BILL</option>
<option value="CLUB">CLUB</option>
<option value="MEDICINE">MEDICINE</option>
<option value="BANK LOAN">BANK LOAN</option>
</select>
</td>
<td> <input type="text" name="ALAMT"></td>
</tr>
</table>

</form>
<br>
<button onclick="addMore()">Add More</button>
<button onclick="removeLast()">Remove</button>
<button onclick="myFunction()">Try it</button>
<br>
<span id='result'></span>

关于javascript - 如何使用 Javascript 获取 HTML 动态用户输入的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34491803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com