Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Onsen UI 是否支持选择列表?我找不到一个例子。我需要让用户从选项列表中进行选择。使用 select 元素会更干净。虽然我可以获得选择功能,但渲染与 UI 的其余部分不一致。
Onsen UI 不提供选择列表元素。如果你想实现它可以使用下面的代码,外观类似于 Onsen 的默认主题。
<select class="text-input" ng-model="animationName" ng-init=" animationName = 'select element' "> <option>option1</option> <option>option2</option> <option>option3</option> </select>