123456789101112131415 |
- $(function () {
- //没有弹窗的情况下
- if ($('.christmas_popup_box,.read_popup_box,.custom_popup_box,.camp_popup_box').length === 0) {
- if ($('#poptype').length) {
- var poptype = $('#poptype').data('poptype')
- if (poptype) {
- $.post('/index/popup/window', {path: document.location.pathname, poptype: poptype}, function (data) {
- if (typeof data == 'string') {
- $('body').append(data)
- }
- })
- }
- }
- }
- });
|