I am building a site, I have the back-end all sorted, however, I would like to use a Responsive
and inbuilt UI
for android and I
devices.. so for example the native scroll wheel on i
phones and the quite similar on android. Is there a small plugin (preferably jquery) that can accomplish this? I think mobile is a bit over kill for this project. The exact elements that I would like styled and thus, respond natively are <select>
's and maybe checkboxes?
问问题
59 次
1 回答
0
看看jQuery 移动版。例如,根据选择菜单的文档:
$(document).bind('mobileinit',function(){
$.mobile.selectmenu.prototype.options.nativeMenu = true;
});
单击选择按钮时,将打开操作系统的本机选择菜单选择器。在菜单中选择一个值时,自定义选择按钮会更新以匹配新选择。
于 2013-10-02T04:12:07.280 回答