这是我现在的代码:
<script type="text/javascript">
$(document).ready(function() {
if($.cookie('msg') == 0)
{
$('#myModal').modal('show');
$.cookie('msg', 1);
}
});
</script>
在页面加载模型显示但当我刷新它一直显示它应该只显示一次。$.cookie 来自https://github.com/carhartl/jquery-cookie
更新:
这行得通:“隐藏”由于某种原因不起作用
<script type="text/javascript">
$(document).ready(function() {
if($.cookie('msg') == null)
{
$('#myModal').modal('show');
$.cookie('msg', 'str');
}
else
{
$("div#myModal.modal").css('display','none');
}
});
</script>