当bootstrap-modal弹出窗体显示时,在查询选择列表上将所选项重置为默认值

时间:2015-10-07 08:21:02

标签: jquery select reset bootstrap-modal jquery-chosen

如何在模式弹出窗体的下拉列表中重置所选项目?

修改 我也在用 https://github.com/harvesthq/chosen

管理列表

这不起作用:

<div class="col-lg-9">
    <select class="form-control input-sm" id="branch1">
        <option value="2185529A">Complaint</option>
        <option value="2385529A">Request</option>
        <option value="2585529A">Enquiry</option>
    </select>
</div>

<!-- scripts -->
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/bootstrap-modalmanager.js"></script>

$('#frmCase').on('show', function () {
    $.clearFormFields(this)
    $('#branch1').get(0).selectedIndex = 1;
    $('#branch2').get(0).selectedIndex = 1;
});

1 个答案:

答案 0 :(得分:0)

由于 @ norlihazmey-ghazali 选择

的评论,我最终找到了解决方案
$('.tabs .tab-links a')