我在网站上安装了一个弹出窗口但它根本不会触发,我认为这是一个jQuery冲突。在控制台中,它写道它已经解雇但没有出现。
我有working version installed here并且工作正常,但是当我将它安装到WordPress上时它不会触发。
以下是页面上的代码,可以通过PHP file_get_contents()
以下是link to the JavaScript file
以下是site link
$( document ).ready(function() {
// if you want to use the 'fire' or 'disable' functionn,
// you need to save OuiBounce to an object
var _ouibounce = ouibounce(document.getElementById('ouibounce-modal'), {
aggressive: true,
timer: 0,
callback: function() { console.log('ouibounce fired!'); }
});
$('body').on('click', function() {
$('#ouibounce-modal').hide();
});
$('#ouibounce-modal .modal-footer').on('click', function() {
$('#ouibounce-modal').hide();
});
$('#ouibounce-modal .modal').on('click', function(e) {
e.stopPropagation();
});
});
答案 0 :(得分:0)
用你的脚本编写脚本 (函数($){ 你的脚本 })(jQuery的);