gpt4 book ai didi

javascript - 我有一个关于输入按钮

转载 作者:行者123 更新时间:2023-12-03 04:49:28 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>

<head>
<style type="text/css">
.dark {
background-color: black;
}
</style>
</head>

<body>
<input type="button" onclick="document.body.className='dark'" value="dark" />
<input type="button" onclick="document.body.className=''" value="reset" />
</body>

</html>

我有两个按钮和两个效果。

按钮减少为一个

如果背景为黑色,则按钮名称被重置,当背景为白色时,如何使按钮名称变暗?

最佳答案

<!DOCTYPE html>
<html>

<head>

<script type="text/javascript">
function clickme ()
{

if(document.body.style.background =='black')
{
document.body.style.background='white';
document.getElementById("button").value="dark";
}
else
{
document.body.style.background='black';
document.getElementById("button").value="reset";
}
}
</script>
</head>

<body >
<input type="button" id="button" onclick="clickme()" value="dark" />
</body>


</html>

关于javascript - 我有一个关于输入按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42722239/

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