我想使用下面的表单布局使表单上的垂直滚动条更粗:
<form:select
id="selectedTaskKeywordsTypes"
name="selectedTaskKeywordsTypes"
path="selectedTaskKeywordsTypes"
multiple="true" >
<form:options items="${optionsTaskTypeKeywords}" />
</form:select>
我意识到生成的底层 HTML5 可能需要使用 $(document).ready(function() 中的 jquery 语句进行操作。
我发现所有关于调整垂直滚动条的参考都只与浏览器窗口有关,而不是与单个选择/选项字段有关。