下拉式自动选择功能已停用

时间:2018-07-16 20:06:27

标签: javascript html

我有一个表单,可以在下拉列表中选择一个值并提交,但是当我尝试访问该表单时,下拉列表中的值仍然保持选中状态,我想在每次新启动时都取消选择它。

>

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用以下命令将下拉菜单的值设置为所需的值。

document.querySelector('#idOfDropdown').value = desired_value; 
// desired_value is the 'value' property of the option you want selected.

如果默认选项写为

<option value=''>--select--</option>

...然后,使用此:

document.querySelector('#idOfDropdown').value = '';

我假设此行最好放在提交表单时调用的函数的末尾。