JQuery Mobile - 在拆分按钮列表中使用复选框
Is it possible to use a checkbox in a split button list instead of the gear icon?
http://jquerymobile.com/demos/1.0a4.1/#docs/lists/lists-split.html
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你的意思是一个 html 复选框,naugtur 的答案是正确的。否则,如果您想在右侧的拆分列表上使用复选框图标,只需将
data-icon="check"
添加到li中的第二个“a”标记即可。If you mean an html checkbox, naugtur's answer is correct. Otherwise if you want to use a checkbox icon on the split list to the right, just add
data-icon="check"
to the second "a" tag in the li.您现在可以在 ul 标记中使用 data-split-icon="check"。
You can now use data-split-icon="check" in the ul tag.
确实如此,但您可能需要为此执行一些 javascript 编码。
如果我是你,我会尝试使用计数气泡并在其中放置一个复选框。
或者
只需在
li
元素中放置一个复选框并将其样式设置为float:right
It sure is, but you might need to do some javascript coding for that.
If I were you, I'd try and use a count bubble and place a checkbox in it.
OR
Simply put a checkbox in the
li
element and style it tofloat:right