我正在使用http://cookie-bar.eu/中的脚本,但出于某种原因,当我将脚本设置为显示在页面顶部时,在您关闭Cookie通知后,页面顶部的文本将被截断。你可以在这里看到Hello如何消失或被截断:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>cookieBAR</title>
<script type="text/javascript">
var expirationDate = new Date();
expirationDate.setDate(128);
document.cookie = "dummy=1; expires="+expirationDate.toUTCString()+"; path=/";
</script>
</head>
<body>
<h1>Demo</h1>
<script type="text/javascript" src="//cdn.jsdelivr.net/cookie-bar/1/cookiebar-latest.js?forceLang=EN&top=1"></script>
</body>
</html>
&#13;
有什么想法吗?
答案 0 :(得分:0)
由开发人员用新版本解决。