gpt4 book ai didi

html - 根据所选值更改列宽

转载 作者:太空宇宙 更新时间:2023-11-04 09:58:14 24 4
gpt4 key购买 nike

我正在使用 twitter bootstrap 并在我的代码中的某处具有以下结构:

.row
.col-md-6
content1
.col-md-3
content2
.col-md-1#id_selector
content3
.col-md-2
content4

我还有一个 js 脚本,它根据选择字段之一的选择值显示/隐藏带有 #id_selector 的列。

我想要实现的是改变.col-md-3col-md-4.col-md-1#id_selector 被隐藏时并在显示时将其设置回 3

我该怎么做?

谢谢

最佳答案

为此你需要 javascript:

document.getElementById('myButton').onclick = function() {
document.getElementById('column-to-change').className.replace('col-md-3', 'col-md-4');
}

注意:由于 OP 中没有提供代码,我只是使用 onclick 提供基本大纲。如果您可以发布一些代码,将更容易排除故障。

关于html - 根据所选值更改列宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38542752/

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