gpt4 book ai didi

javascript - 我如何使用Js点击一个div并更改另一个div的设置

转载 作者:行者123 更新时间:2023-11-30 12:16:17 25 4
gpt4 key购买 nike

这是我的代码缺少不需要的信息。

<div>   
<div id="one" class="button"></div>
<div id="two" class="button"></div>
</div>

<div>
<div class="Home tab">
<h1> Hello </h1>
<p> This is my amazing page </p>
</div>

<div class="other tab">
<h1> art blah blag </h1>
<p> This is my amazing page </p>
</div>
</div>

<script>
$( "div.button" ).click(function() {
$( "div.Home" ).toggleClass( "Show" );
$( "div.Home" ).toggleClass( "tab" );
});
</script>

<style>
.tab
{
display: none;
}
.Show
{
display: block;
}
</style>

这段代码包含我的问题,简单地说我想点击按钮 1 并设置主页,然后点击按钮 2 并设置其他等等。但我是 Js 的新手,我似乎无法让它工作。我尝试将两个按钮都设置为主页,但也没有用。

请帮帮我,我很困惑。

最佳答案

您好,KbCoder 请检查以下代码,

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.tab{display: none;}
</style>
</head>
<body>
<div>
<div data-id="one" class="one button">1st tab</div>
<div data-id="two" class="two button">2nd tab</div>
</div>

<div>
<div id="one" class="Home tab">
<h1> Hello </h1>
<p> This is my amazing page </p>
</div>

<div id="two" class="other tab">
<h1> art blah blag </h1>
<p> This is my amazing page </p>
</div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#one").show();
$('.button').click(function(){
$('.tab').hide();
$("#" + $(this).data('id')).show();
});
});
</script>
</body>
</html>

关于javascript - 我如何使用Js点击一个div并更改另一个div的设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32353600/

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