作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想以特定方式隐藏/显示 div。我在开头和结尾放置了一个可点击的文本。
按钮工作正常,但我想要这个东西:
"当用户点击底部按钮时,页面回滚到当前隐藏div的开头"
<a href="javascript:visibilite('divid21');">
<u>Examples (Click to show/hide)</u></a>
<div id="divid21" style="display:none;">
long html code about 100 lines
<a onclick="
document.getElementById('divid21').style.display='none'; "
href="#divid21"> Examples (Click to hide)</a>
</div>
函数
function visibilite(id) {
var divs = document.getElementsByTagName('div');
for(var no=0;no<divs.length;no++){
if(divs[ no].className=='divs'){
divs[ no].style.display = "none";
}
}
document.getElementById(id).style.display = "block"; }
最佳答案
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
Jquery to toggle between hide and show
<script>
$(document).ready(function(){
$("button").click(function(){
$("divex").toggle();
});
});
</script>
Div with the same id specified in the jquery code
<button> Hide/Show </button>
<div id="divex">Div content </div>
关于javascript - 隐藏/显示 div 最重要的是回来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43606900/
Haskell 是一种具有许多 Root 于形式数学的特征的语言。我应该学习哪些数学主题才能更深入地了解和理解这门语言?例如,我认为抽象代数和范畴论都是值得探索的好话题。 最佳答案 一般来说,离散数学
大多数创建位图上下文的代码使用 kCGImageAlphaPremultipliedFirst 来创建 ARGB,而不是使用 kCGImageAlphaPremultipliedLast 来创建 RG
我是一名优秀的程序员,十分优秀!