• <bdo id='ltWNj'></bdo><ul id='ltWNj'></ul>
      <tfoot id='ltWNj'></tfoot>

      <i id='ltWNj'><tr id='ltWNj'><dt id='ltWNj'><q id='ltWNj'><span id='ltWNj'><b id='ltWNj'><form id='ltWNj'><ins id='ltWNj'></ins><ul id='ltWNj'></ul><sub id='ltWNj'></sub></form><legend id='ltWNj'></legend><bdo id='ltWNj'><pre id='ltWNj'><center id='ltWNj'></center></pre></bdo></b><th id='ltWNj'></th></span></q></dt></tr></i><div id='ltWNj'><tfoot id='ltWNj'></tfoot><dl id='ltWNj'><fieldset id='ltWNj'></fieldset></dl></div>

        <legend id='ltWNj'><style id='ltWNj'><dir id='ltWNj'><q id='ltWNj'></q></dir></style></legend>

      1. <small id='ltWNj'></small><noframes id='ltWNj'>

      2. 如何在不允许多选的情况下在 HTML 中创建列表框

        时间:2023-10-13

        <i id='fiNyd'><tr id='fiNyd'><dt id='fiNyd'><q id='fiNyd'><span id='fiNyd'><b id='fiNyd'><form id='fiNyd'><ins id='fiNyd'></ins><ul id='fiNyd'></ul><sub id='fiNyd'></sub></form><legend id='fiNyd'></legend><bdo id='fiNyd'><pre id='fiNyd'><center id='fiNyd'></center></pre></bdo></b><th id='fiNyd'></th></span></q></dt></tr></i><div id='fiNyd'><tfoot id='fiNyd'></tfoot><dl id='fiNyd'><fieldset id='fiNyd'></fieldset></dl></div>
          <tfoot id='fiNyd'></tfoot>

          1. <legend id='fiNyd'><style id='fiNyd'><dir id='fiNyd'><q id='fiNyd'></q></dir></style></legend>
                <tbody id='fiNyd'></tbody>

                  <bdo id='fiNyd'></bdo><ul id='fiNyd'></ul>

                  <small id='fiNyd'></small><noframes id='fiNyd'>

                  本文介绍了如何在不允许多选的情况下在 HTML 中创建列表框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我在 HTML 方面没有太多经验.我希望创建一个简单的列表框,但要求之一是禁止多选.列表框的大部分代码都是这样的 -

                  I don't have much experience in HTML. I am looking to create a simple listbox, but one of the requirements is to DISALLOW multiple selection. Most of the code for listboxes goes like this -

                   <select name="sometext" multiple="multiple">
                      <option>text1</option>
                      <option>text2</option>
                      <option>text3</option>
                      <option>text4</option>
                      <option>text5</option>
                   </select>
                  

                  但这允许多选.

                  这里,有人问了类似的问题,但最佳"答案被否决了.所以我不确定这还能怎么做.请帮忙.

                  Here, a similar question was asked, but the "best" answer has been downvoted. So I am not sure how else this could be done. Please help.

                  推荐答案

                  只要使用size属性即可:

                  Just use the size attribute:

                  <select name="sometext" size="5">
                    <option>text1</option>
                    <option>text2</option>
                    <option>text3</option>
                    <option>text4</option>
                    <option>text5</option>
                  </select>
                  

                  为了澄清,添加 size 属性并没有删除多选.

                  To clarify, adding the size attribute did not remove the multiple selection.

                  单选有效,因为您删除了 multiple="multiple" 属性.

                  The single selection works because you removed the multiple="multiple" attribute.

                  添加 size="5" 属性仍然是个好主意,这意味着至少要显示 5 行.查看完整参考这里

                  Adding the size="5" attribute is still a good idea, it means that at least 5 lines must be displayed. See the full reference here

                  这篇关于如何在不允许多选的情况下在 HTML 中创建列表框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:主线程忙时可以进行垃圾收集吗? 下一篇:HTML 列表框换行文本

                  相关文章

                  最新文章

                  <small id='abUon'></small><noframes id='abUon'>

                    • <bdo id='abUon'></bdo><ul id='abUon'></ul>
                    <tfoot id='abUon'></tfoot>
                    1. <i id='abUon'><tr id='abUon'><dt id='abUon'><q id='abUon'><span id='abUon'><b id='abUon'><form id='abUon'><ins id='abUon'></ins><ul id='abUon'></ul><sub id='abUon'></sub></form><legend id='abUon'></legend><bdo id='abUon'><pre id='abUon'><center id='abUon'></center></pre></bdo></b><th id='abUon'></th></span></q></dt></tr></i><div id='abUon'><tfoot id='abUon'></tfoot><dl id='abUon'><fieldset id='abUon'></fieldset></dl></div>
                    2. <legend id='abUon'><style id='abUon'><dir id='abUon'><q id='abUon'></q></dir></style></legend>