如何使用 javascript 设置输入选择(HTML)中的字段?

发布于 2024-11-06 19:38:20 字数 47 浏览 0 评论 0原文

我将随机选择一个数字,并使用排序后的数字在选择中定义选定的字段。我如何设置字段?

I will randomly select a number and define the selected field in a select with the sorted number. How I set the field?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尹雨沫 2024-11-13 19:38:20

将属性 selected="selected" 添加到要选择的选项元素。

伪代码

function foo()
{
create list of option elements
generate random number
get a single option element at index of random number
set all options attribute "selected" = null
set the option element[at index of random number] attribute selected = "selected"
}

Add the Attribute selected="selected" to the option element that you want to select.

pseudo code

function foo()
{
create list of option elements
generate random number
get a single option element at index of random number
set all options attribute "selected" = null
set the option element[at index of random number] attribute selected = "selected"
}
淡淡绿茶香 2024-11-13 19:38:20
var randomNumber = 3; // just for example 
document.getElementById('select_field').selectedIndex = randomNumber;
var randomNumber = 3; // just for example 
document.getElementById('select_field').selectedIndex = randomNumber;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文