gpt4 book ai didi

javascript - Select 事件的 ChangeSelectedValue

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

当我更改标记 <select> 的选定值时,如何触发事件使用JavaScript

我尝试过类似的操作,但现在迷失了;当我更改 <select> 的选定值时,我想更改标签的值标签。

function ChangeSelectValue(ddlID, value, change) {
var ddl = document.getElementById(ddlID);
}

最佳答案

这很简单,只需使用 onchange=display(this.value) 从选择选项返回所选值,其中 dispaly() 是用户定义的函数,this.value 返回所选值

        <!DOCTYPE html>
<html>
<head>
<script>
function display(str) {
alert(str);
}
</script>
</head>
<body>

<h1>My First JavaScript</h1>
<p id="demo">This is a paragraph.</p>

<select id="Country" onchange="display(this.value)">
<option id="I" value="India">India</option>
<option id="P" value="Pakistan" >Pakistan</option>
<option id="S" value="SriLanka">SriLanka</option>
<option id="C" value="China" >China</option>
</select>

</body>
</html>

关于javascript - Select 事件的 ChangeSelectedValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18175183/

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