gpt4 book ai didi

javascript - 如何使用javascript将元素的内联CSS设置为默认值?

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

我有一个简单的功能,当选中复选框时更改文本的默认样式,并在取消选中复选框时将样式更改回默认样式。

terms.style = ""; 应该将样式重置为默认值,但由于某些原因它没有,我完全不知道为什么。我知道当复选框未选中时会执行 else 范围,因为我已经通过手动输入不同的样式对其进行了测试。

const form = document.getElementById('form');
const checkBox = form.querySelector('input[name=termsCheckBox]');

checkBox.addEventListener('click', function(){
const terms = document.getElementById('termsText');
if (checkBox.checked){
terms.style = "color: black; font-weight: normal";
} else {
terms.style = "";
}
});//end of function

最佳答案

您可以使用 getAttribute() 在元素的 style 属性中获取内联 CSS,并将其存储在变量中,并在选中/取消选中复选框时插入并从 样式属性

var checkBox = document.querySelector('#form input[name=termsCheckBox]'),
terms = document.getElementById('termsText'),
style = terms.getAttribute('style');

checkBox.addEventListener('click', function(){
if (checkBox.checked)
terms.style.cssText = "color:black; font-weight:normal";
else
terms.style.cssText = style;
});
<form id="form">
<input type="checkbox" name="termsCheckBox">
<textarea id="termsText" style="color:red; font-weight:bold">termsText</textarea>
</form>

关于javascript - 如何使用javascript将元素的内联CSS设置为默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53672048/

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