Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表格上有一个下拉列表。
一旦用户在下拉菜单上做出选择,我会在 javascript 中使用什么事件触发。我尝试过改变,但这确实有效。
DROP DOWN
onchange是正确的事件。
onchange
HTML
<select onchange="SelectChanged(this)"> ... </select>
JS
function SelectChanged(obj) { ... }
这是一个非常简单的工作示例,可以帮助您入门。