我找到了一款适用于手机的全屏selextbox方法。
http://craftpip.github.io/bootstrap-fullscreen-select/
但是当我在选择框中添加表单操作并单击选择选项时,弹出窗口会打开,在我选择某个值之前,它会直接重定向到表单操作。
知道如何解决这个问题吗?
<link href="http://www.jqueryscript.net/demo/Mobile-First-Fullscreen-Select-Replacement-with-jQuery-Bootstrap/css/bootstrap-fullscreen-select.css" rel="stylesheet" type="text/css">
<form action="index.html">
<select class="form-control example-1" >
<option value="JavaScript">JavaScript</option>
<option value="C++">C++</option>
<option value="Swift">Swift</option>
<option value="Ruby">Ruby</option>
<option value="Python">Python</option>
</select>
</form>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="http://www.jqueryscript.net/demo/Mobile-First-Fullscreen-Select-Replacement-with-jQuery-Bootstrap/js/bootstrap-fullscreen-select.js"></script>
<script>
$('.example-1').mobileSelect();
$('.example-2').mobileSelect({theme: 'holo',style: 'btn-danger'});
$('.example-3').mobileSelect({theme: 'mac', animation: 'zoom'});
</script>
答案 0 :(得分:1)
有趣的是,我从未使用过此插件,因此我不得不在源头挖掘一下。无论如何,您的原生选择正在转换为按钮。表格中的按钮将提交。将此代码段添加到您自己的js文件中。
$(document).ready(function(){
$('.btn-mobileSelect-gen').attr('type', 'button');
});
我在这里分叉你的小提琴 - working demo