gpt4 book ai didi

javascript - 如果屏幕缩小,更改

的文本

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

如果屏幕尺寸缩小,我有一个代码试图更改 h1 的文本,这是我拥有的实际代码,但无法正常工作。有人可以帮助我纠正它并理解它吗?谢谢!

HTML

<h1 id="text1">Test</h1>

JavaScript

if($(window).width() <= 500){
$('#text1').Text('testing');
}else{
$('#text1').Text('buuu');
}

最佳答案

您需要配合 window 调整大小事件。另一种选择是使用 CSS 伪代码。

@media (min-width: 500px) {
#text1:after {
content: "foo";
}
}
@media (max-width: 499px) {
#text1:after {
content: "bar";
}
}
<h1 id="text1"></h1>

已编辑 根据 Niet the Dark Absol 建议。

@media (min-width: 500px) {
#text1 > .tiny {
display: none;
}
}
@media (max-width: 499px) {
#text1 > .big {
display: none;
}
}
<h1 id="text1">
<span class="big">Bigger Content</span>
<span class="tiny">Smaller Content</span>
</h1>

关于javascript - 如果屏幕缩小,更改 <h1> 的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35541998/

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