html 在基于选择类的版本中选择选项时打开模态
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在基于选择类的版本中选择选项时打开模态相关的知识,希望对你有一定的参考价值。
$('.actions-more').change(function() {
var action = $(this).val();
if(action == "withdraw"){
$('#horseWithdraw').modal("show");
}
else if(action == "substitute"){
$('#horseSubstitute').modal("show");
}
else if(action == "setHorsePriority"){
$('#setHorsePriority').modal("show");
}
else if(action == "viewlog"){
$('#feiLogsShow').modal("show");
}
else if(action == "comment"){
$('#addComment').modal("show");
}
});
<select class="selectpicker actions-more" data-style="btn-default btn-xs" data-width="auto" data-container="body" title="Horse...">
<option disabled>Substitute</option>
<option value="withdraw">Withdraw</option>
<option value="comment">Comment</option>
<option value="viewlog">View log</option>
</select>
以上是关于html 在基于选择类的版本中选择选项时打开模态的主要内容,如果未能解决你的问题,请参考以下文章
在选项卡栏控制器中选择时以模态方式呈现视图控制器
如果选择了选项,则单击按钮时打开弹出框
DOM操作相关案例 模态对话框,简易留言板,js模拟选择器hover,tab选项卡,购物车案例
IView选择器Select开启搜索功能后动态赋值的坑
打开“模态”窗口并在基于选项卡组的应用程序中关闭
如何在页面加载时在 HTML 选择选项中选择 JSON 结果