如何设置 SELECT 下拉列表中可见的最大项目数?

发布于 2024-09-24 00:57:12 字数 205 浏览 4 评论 0原文

我有一个大约 30 个项目的下拉列表,我只想显示 8 个项目,然后下拉列表应该滚动。我在VS2010中使用MVC2

<%= Html.DropDownListFor(d => d.Thing.ThingID, Model.Things, new { style = "width: 200px", rows = 10 })%>

I have a drop down list of around 30 items and I want to only show 8 items and then the drop down should scroll. I'm using MVC2 in VS2010

<%= Html.DropDownListFor(d => d.Thing.ThingID, Model.Things, new { style = "width: 200px", rows = 10 })%>

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

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

发布评论

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

评论(1

看海 2024-10-01 00:57:12

您是否尝试过 size 而不是 rows

<%= Html.DropDownListFor(d => d.Thing.ThingID, Model.Things, new { style = "width: 200px", size = 10 })%>

根据w3 http://www.w3schools.com/tags/att_select_size.asp size 是您要查找的属性。

阅读您的回复后,答案似乎是它独立于操作系统/浏览器,并且无法通过 html 进行控制。您可以做的是使用纯 HTML 版本覆盖选择框。您可以在此网站上执行类似的操作: http://mypocket-technologies.com/jquery/SelectBoxPlugin/ 但是,它可能会导致其他问题,并且看起来不像标准列表框。

have you tried size instead of rows?

<%= Html.DropDownListFor(d => d.Thing.ThingID, Model.Things, new { style = "width: 200px", size = 10 })%>

According to the w3 http://www.w3schools.com/tags/att_select_size.asp size is the attribute you're looking for.

After reading your response the answer appears to be that it's operating system/browser independent and not possible to control through html. What you could do is override the select box with an HTML only version. You could do something like on this site: http://mypocket-technologies.com/jquery/SelectBoxPlugin/ However it may cause other problems and won't look like a standard list box.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文