gpt4 book ai didi

从 Dropdown 获取值时 JavaScript 不工作

转载 作者:行者123 更新时间:2023-12-01 02:23:28 24 4
gpt4 key购买 nike

我编写了一个简单的 HTML 页面,在按钮单击事件中,从下拉列表中选择的值将打印在文本框中。我使用了 javascript 来完成这项任务。我不知道为什么它不起作用,尽管逻辑对我来说似乎没问题。任何帮助将不胜感激。

<!DOCTYPE html>
<html lang="en">
<head>
<title>Sample</title>
</head>

<body>
<table align="center">
<tr>
<td>
<select id="drpdwn" name="drpdwn">
<option selected>Select</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="text" name="textbox" id="textbox">
</td>
</tr>
<tr>
<td>
<button onclick="myFunction()">Go</button>
</td>
</tr>
</table>

<script>
myFunction() {
var el = document.getElementById("drpdwn");
var sel_value = el.options[el.selectedIndex].value;
document.getElementById("textbox").value = sel_value;
}
</script>

</body>
</html>

最佳答案

我认为问题在于您试图使用 el.options[el.selectedIndex].value; 获取选择的值 我对您的代码片段进行了最小程度的更正,以便它能够 工作,还使用了 querySelector,它在可重用性方面比 getElementById 好得多

document.querySelector('.btn').addEventListener('click',function() {
var el = document.querySelector("#drpdwn");
var sel_value = el.value;
document.querySelector("#textbox").value=sel_value;
});
<!DOCTYPE html>
<html lang="en">

<head>
<title>Sample</title>
</head>

<body>
<table align="center">
<tr>
<td>
<select id="drpdwn" name="drpdwn">
<option selected>Select</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="text" name="textbox" id="textbox">
</td>
</tr>
<tr>
<td>
<button class="btn" type="submit">Go</button>
</td>
</tr>
</table>

</body>

</html>

关于从 Dropdown 获取值时 JavaScript 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49018443/

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