正如标题所述,我想在我的模态中添加一个复选框,选中后,将阻止弹出模式.我希望每次重新加载页面时都会出现模式,并且用户可以使用该选项使其停止显示.
我的模态:
<div id="myModal" class="modal hide fade"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h3>Modal header</h3> </div> <div class="modal-body"> <div id="modalText"></div> </div> <div class="modal-footer"> <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button> <button class="btn btn-primary">Save changes</button> </div> </div>
和我的js:
<script type="text/javascript"> $(document).ready(function () { $('.redBox').draggable(); $('.blueBox').droppable({ drop: function (event,ui) { var draggable = ui.draggable; var droppable = $(this).attr('id'); $(this) $('.modal-body #modalText').append("Assign " + draggable.attr('id').substring(1,23) + " to " + droppable + "?"); $("#myModal").modal('show'); } }); }); </script>
解决方法
尝试注入复选框单击事件并使用Cookie来存储用户选择.
您需要使用jQuery cookie插件才能使用$.cookie.
https://github.com/carhartl/jquery-cookie
HTML:
<div id="myModal" class="modal hide fade"> [...] <div class="modal-footer"> <label><input type="checkBox" name="dismiss">Don't show again!</label><br /> <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button> <button class="btn btn-primary">Save changes</button> </div> </div>
JS:
$(document).ready(function () { $('.redBox').draggable(); $('.blueBox').droppable({ drop: function (event,ui) { var draggable = ui.draggable; var droppable = $(this).attr('id'); //$(this) this is not used //check if cookie is set and value is 1 if(!$.cookie('modal_dismiss')) { //moved modal stuff in if case $('.modal-body #modalText').append("Assign " + draggable.attr('id').substring(1,23) + " to " + droppable + "?"); $("#myModal").modal('show'); } } }); //use modal hidden event for checking checkBox status $('#myModal').on('hidden',function () { var status = $("input[name=dismiss]",this).is(":checked"); $.cookie('modal_dismiss',status,{ expires: 7,path: '/' }); }); });
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。