gpt4 book ai didi

javascript - 需要 cookie 代码帮助(html、css、js)

转载 作者:行者123 更新时间:2023-11-30 09:57:59 26 4
gpt4 key购买 nike

我对这个脚本越来越着迷。它不工作。谁能告诉我如何修复它?

我的代码:在我的 html 中的标记内:

HTML代码:

<div class="cookie-message">
<p class="cookie-content">This website uses cookies. By Browsing this website you acconsent to the use of cookies. </p>
<p class="cookie-content"><button class="button">OK</button> &nbsp; <a href="http://here-goes-my-cookie-page.com">Read more about cookies</a></p>
</div>

我的 CSS 文件(更多用于样式):代码:

.cookie-message {
width: 100%;
background: #333;
color: #ddd;
padding: 1em 1em .5em;
position: fixed;
left: -5px;
bottom: 2em;
text-align: left;
z-index: 1;
}

我的 javascript 如下:代码:

<!--Start Cookie Script--> 
<script>
$('.cookie-header').click(function() {
$('.cookie-content').slideToggle('fast');
$('.cookie-content button').click(function() {
$('.cookie-content').slideUp('fast');
});
});
</script>
<!--End Cookie Script-->

事实上,我对 JavaScript 完全陌生,所以我复制了它并将其插入到 </body> 之前标记,显然它不起作用...

有人可以帮助我吗?我需要在按下“确定”按钮时关闭消息...

最佳答案

您在 HTML 和 JQuery 选择器中的类名不匹配。

<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<!-- Stuff -->
$(document).ready(function(){
$('.cookie-message').click(function() {
$('.cookie-content').slideToggle('fast');
$('.cookie-content button').click(function() {
$('.cookie-content').slideUp('fast');
});
});
});
</body>

我相信这就是您要找的JSFiddle example.

关于javascript - 需要 cookie 代码帮助(html、css、js),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33105946/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com