gpt4 book ai didi

javascript - 如何使用 Javascript 更改元素的宽度?

转载 作者:搜寻专家 更新时间:2023-10-31 22:49:56 24 4
gpt4 key购买 nike

如何更改 #center 中指定的 width 值? (我不想仅仅因为 1 更改了 width 值就在 CSS 文件之间切换。)如何使用 Javascript 动态更改值?

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style type="text/css">
#main #center {
width: 600px; // change width to 700 on click
float: left;
}

#main #center .send {
background: #fff;
padding: 10px;
position: relative;
}

#main #center .send .music {
text-align: center;
margin-bottom: 10px;
}

#main #center .send .write {
font-family: georgia, serif;
font-size: 150px;
opacity: 0.2;
}

//....etc.
</style>
</head>

<body>
// change #center width to 700
<a href="#go2" onclick="how to change width of #center ???" ></a>
</body>
</html>

最佳答案

document.getElementById('center').style.width = "599px";

关于javascript - 如何使用 Javascript 更改元素的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7852466/

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