<!-- Modal -->
<div id="appsmodal" class="modal hide fade" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</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>
<script type="text/javascript">
$(document).ready(function() {
if($.cookie('msg') == 0)
{
$('#appsmodal').modal('show');
$.cookie('msg', 1);
}
});
</script>
我一直在爲大約一個小時而煩惱,但無濟於事。在使用我所有的資源之前,我不想問問題。Jquery Cookie代碼不能正常工作
這是一個.length的東西?如果(!$。cookie('msg')。length)還是類似的?如果cooke'msg'沒有被設置,它不會等於0.它不會存在。 – orolo
.length?是吧? jquery cookie.js和bootstrap modal – Binary101010
我想知道如果你是否「如果($ .Cookie('味精')== 0)永遠不會返回true,因爲如果你還沒有設置$ .cookie('味精'),它不會== 0它只是不會存在,但是,詢問$ .cookie('msg')。length == 0是否可能會返回所需內容 – orolo