gpt4 book ai didi

Javascript:如果满足条件则隐藏元素

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

我试图根据其 ID 隐藏一个元素,但是,我无法让它工作。我用 Google 搜索了答案,但无论我做什么,我似乎都无法让它为我工作。

我的代码附在下面。

<!DOCTYPE html>
<html>
<!-- HTML -->
<body>
<div id="role" value="Edit">
<button> Edit </button>
</div>
</body>

<!-- Javascript -->
<script>
if(document.getElementById("role").value == 'Edit'){
document.getElementById("role").style.display = 'none';
}
</script>
</html>

最佳答案

您可以使用下面的代码,您想要获取一个属性而不是值。

如果需要,您可以使用 querySelector 而不是 getElementById。

var role = document.querySelector('#role');

if(role.getAttribute('value') == 'Edit'){
role.style.display = 'none';
}
<!DOCTYPE html>
<html>
<!-- HTML -->
<body>
<div id="role" value="Edit">
<button> Edit </button>
</div>
</body>
</html>

关于Javascript:如果满足条件则隐藏元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53653160/

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