gpt4 book ai didi

javascript - HTML Div 显示/隐藏问题

转载 作者:行者123 更新时间:2023-11-30 18:34:28 27 4
gpt4 key购买 nike

friend 们好,我对 div 有疑问。我的页面上有一个链接显示/隐藏潜水,单击它我必须显示或隐藏特定的 div。我成功地做到了。但我的问题是,每当我单击该链接时,div 都会被隐藏或显示,但页面直接位于顶部,我必须再次向下滚动。我不想滚动它,也不想到达顶部。

请帮我解决这个问题。提前谢谢你。

更新: friend 我从我的一位 friend 那里得到了答案。其实我在用由于 href="#"每次我点击该链接时,URL 都会更改并且页面会到达顶部。

最佳答案

你要这样做吗?

<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8">
</head>
<body>

<div id="wrapper">
<div id="container">

</div><!-- end of #container div -->

<a id="showdiv">Show the div</a>|<a id="hideDiv">Hide the div</a>|<a id="toggle">Toggle</a>

</div><!-- end of #wrapper div -->

</body>
</html>

这是CSS:

#container {
width: 300px;
height: 300px;
background: red;
margin-bottom: 20px;
}

#wrapper {
margin: 40px auto;
width: 400px;
}

这是 jquery

$(function() {// When document is ready, run this...

//Get hold of the link with the id #showdiv and do something when you click it
$("#showdiv").click(function() {
// Grab the div with the id #container and show it
// Alert me when you're done
$("#container").show(2000, function() {
alert("I'm done showing");
});
});

//Get hold of the link with the id #hideDiv and do something when you click it
$("#hideDiv").click(function() {
// Grab the div with the id #container and hide it
// Alert me when you're done
$("#container").hide(2000, function() {
alert("I'm done hiding");
});

});

// Toggle - This is like a On/Off Switch
//Get hold of the link with the id #toggle and do something when you click it
$("#toggle").click(function() {
// Grab the div with the id #container and show if hidden / hide if shown
$("#container").toggle(2000);
});

});

当然,在使用上面的脚本之前,您必须链接到 jQuery 的副本。这是演示的链接:http://jsfiddle.net/tonystark/HhNBA/

关于javascript - HTML Div 显示/隐藏问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8676741/

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