HTML 中的select 标记用于创建可以选择的选项下拉列表。选项标签包含选择时将使用的值。
select 元素的默认值可以通过使用所需选项上的‘selected’ 属性来设置。这是一个布尔属性。
具有 ‘selected’属性的选项将默认显示在下拉列表中。
句法:
示例 1:使用 selected 属性。
set the default value for
GeeksforGeeks
How to set the default
value for an HTML
The Starter option will be selected by default
Choose your plan below:
输出:
点击列表前:
点击列表后:
示例 2:这也可用于在列表中添加诸如“选择一个选项”之类的消息。除了选择之外,此选项还将具有隐藏和禁用属性。
Set the default value for
GeeksforGeeks
How to set the default value for an
HTML
The Select an Option would be shown by default.
Choose your plan below:
输出:
点击列表前:
点击列表后:
HTML 是网页的基础,用于通过构建网站和 Web 应用程序进行网页开发。您可以按照此 HTML 教程和 HTML 示例从头开始学习 HTML。