在年龄门上插入饼干

时间:2018-06-12 10:01:31

标签: javascript cookies aggregate

如何在AgeGate上插入Cookie?

这是我的代码:

document.addEventListener('DOMContentLoaded', function(e) {
    /**
     * AgeGate object imported and attached to window.AgaGate
     */

    var gate = new AgeGate({  
        // set options
        form: document.querySelector('form'),
        countries: true,
    }, function(err) {
      // handle post-validation action
      if (err)
          alert('Age check failed!');
      else
          $('#age-gate').hide();
    });  
});

0 个答案:

没有答案