为什么每次只在Internet Explorer或Microsoft Edge上打开我的网站时都会出现我的Cookie法律脚本?
如果我关闭浏览器并重新打开它,将会询问cookie。我的网站上一次又一次。
这是我的网站:http://www.nepsrl.it/
这是我的脚本:http://www.nepsrl.it/cookieinfo/cookieinfo/cookieinfo.js
我试图多次解决这个问题,但没有成功,我认为这是兼容性问题,有人有想法吗?
答案 0 :(得分:0)
这已嵌入您的脚本文件中。
构建cookie banner html的代码
$(document).ready(function() {
$("#tbl_calendar").on("click", "a", null, clickAppointment);
});
function clickAppointment(eventData)
{
//Get the Id of the appointment that has been clicked:
currentAppointment = $(this).attr('id');
//alert('clicked' + '#'+currentAppointment)
$('#'+currentAppointment).addClass('selected');
}
将身份附加到身体的代码
var cookieInfoMain = '<div id="cookie-law-container-box"><div id="cookie-law-container"><div id="cookie-law-message">' + this.options.defaultText + '</div><div id="cookie-law-action" style="float:right;"><a class="cookie-law-button" id="cookie-law-button-ok" href="#">' + this.options.okButton + '</a>' + moreButton + '</div><div style="clear:both;"></div></div></div>';
如果您不希望显示cookie信息,请删除该代码以附加到正文。