本文介绍了< SELECT multiple> - 如何只允许选择一个项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有多个选项的< SELECT multiple> 字段,我想让它只能同时选择一个选项,但用户可以按住CTRL键并一次选择更多项目。

I have a <SELECT multiple> field with multiple options and I want to allow it to have only one option selected at the same time but user can hold CTRL key and select more items at once.

有没有办法如何做到这一点? (我不想删除'multiple')。

Is there any way how to do it? (I don't want to remove 'multiple').

推荐答案

只是不要让它成为多选,而是设置它的大小,如:

Just don't make it a select multiple, but set a size to it, such as:

  <select name="user" id="userID" size="3">
    <option>John</option>
    <option>Paul</option>
    <option>Ringo</option>
    <option>George</option>
  </select>

工作示例:

这篇关于&lt; SELECT multiple&gt; - 如何只允许选择一个项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 07:45