これが私のコードです:
<script type="text/javascript">
$(document).ready(function() {
if($.cookie('msg') == 0)
{
$('#myModal').modal('show');
$.cookie('msg', 1);
}
});
</script>
ページの読み込み時にモデルが表示されますが、更新すると、1回だけ表示する必要があるものが表示され続けます。$.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>