如何在模式弹出窗体的下拉列表中重置所选项目?
修改 我也在用 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;
});
答案 0 :(得分:0)
由于 @ norlihazmey-ghazali 对选择
的评论,我最终找到了解决方案$('.tabs .tab-links a')