common_tips.js 556 B

123456789101112131415
  1. $(function () {
  2. //没有弹窗的情况下
  3. if ($('.christmas_popup_box,.read_popup_box,.custom_popup_box,.camp_popup_box').length === 0) {
  4. if ($('#poptype').length) {
  5. var poptype = $('#poptype').data('poptype')
  6. if (poptype) {
  7. $.post('/index/popup/window', {path: document.location.pathname, poptype: poptype}, function (data) {
  8. if (typeof data == 'string') {
  9. $('body').append(data)
  10. }
  11. })
  12. }
  13. }
  14. }
  15. });