gpt4 book ai didi

javascript - 如何显示页眉,当我们使用 jquery 单击垂直选项卡时

转载 作者:行者123 更新时间:2023-11-28 11:47:52 25 4
gpt4 key购买 nike

HTML:

 <ul>
<li><a href="#a1">a1</a></li>
<li><a href="#b1">b1</a></li>
</ul>
<div id="sections">
<div class="section" id="a">
</div>
<div class="section" id="b">
</div>

我的演示链接:http://www.bajistech.info/tiltindicators.html#TiltWatch-Plus1 ,我试图在单击垂直选项卡时使页面滚动。

脚本 1:

     $(document).ready(function(){

if (
$('ul#verticalNav li a').length &&
$('div.section').length
) {
$('div.section').css( 'display', 'none' );
//$('ul#verticalNav li a').each(function() {
$('ul#verticalNav li a').click(function() {
showSection( $(this).attr('href') );
});
// if hash found then load the tab from Hash id
if(window.location.hash)
{
// to get the div id
showSection( window.location.hash);
}
else // if no hash found then default first tab is opened
{
$('ul#verticalNav li:first-child a').click();
}
}
});
</script>

脚本2

function showSection( sectionID ) {
$('div.section').css( 'display', 'none' );
$('div'+sectionID).css( 'display', 'block' );
}
$(document).ready(function(){

if (
$('ul#verticalNav li a').length &&
$('div.section').length
) {
$('div.section').css( 'display', 'none' );
//$('ul#verticalNav li a').each(function() { // no need for each loop
$('ul#verticalNav li a').click(function() { // Use $('ul#verticalNav li a').click
showSection( $(this).attr('href') );
});
//});
if(window.location.hash) // if hash found then load the tab from Hash id
{
showSection( window.location.hash);// to get the div id
}
else // if no hash found then default first tab is opened
{
$('ul#verticalNav li:first-child a').click();
}
}
});

最佳答案

您应该添加以下样式“overflow:hidden;”并删除类名为 about_content_forproducttilt10

的 div 的 height 属性使用更通用的类名也是一个不错的选择,在您的情况下是“产品描述”而不是“about_content_forproduct ...”

关于javascript - 如何显示页眉,当我们使用 jquery 单击垂直选项卡时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20418684/

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