我有个问题。我复制了与页面上完全相同的代码,并且在此处的 jsfiddle 上运行良好。当我将它粘贴到 html/css/js 时,此代码不起作用。发生这种情况有什么原因吗?代码有什么问题?我敢肯定这很简单,但我就是想不通。非常感谢您提前提供的帮助。顺便说一句:如果您需要,这是一个源代码。需要等待 4 秒钟,因为它会滑下来。X 按钮应该隐藏整个 div,但事实并非如此。这就是问题所在。
代码在这里:
<div id="wrapper">
<div id="cookies">
<p>Leed City Wifi uses cookies. By continuing to browse the site you are agreeing to use our cookies: </p>
<a href="terms-cookies.html">Find out more</a>
<a href="#" id="close" > <img src="http://content.captive-portal.com/cookies/_images/close.png"/></a>
</div>
</div>
和这里的jQuery:
$(document).ready(function(){
$('#wrapper').hide();
function delay() {
$('#wrapper').slideDown(500);
}
setTimeout(delay, 500);
});
$(document).ready(function(){
$('#cookies').hide();
function delay() {
$('#cookies').slideDown(200);
}
setTimeout(delay, 4000);
});
$("#close").click(function() {
$("#cookies").slideUp(function() {
window.location.href = "#";
});
});
jsfiddle在这里。提前感谢您的时间