📜  获取通知仅第一次访问网站 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:17.891000             🧑  作者: Mango

代码示例1


// 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...
}