📅  最后修改于: 2022-03-11 14:55:17.891000             🧑  作者: Mango
// Check If Cookie exists and if it doesn't exists
if( $.cookie('example') == null ) {
// Create cookie
$.cookie( 'example', '1', { expires: 7, path: '/' } );
// Display popup
// Your code here...
}