问题:
使用bootbox.js 提示错误:$.fn.modal is not defined; please double check you have included the Bootstrap JavaScript library
解决:将bootbox.min.js 放在jquery.min.js上面引入
<script type="text/javascript" src="/common/js/bootbox.min.js"></script>
<script type="text/javascript" src="/common/js/jquery.min.js"></script>
网友评论