gpt4 book ai didi

javascript - 使用javascript动态更改文本时保留CSS

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

我一直试图用一个按钮随机化一个数字,但每次我点击按钮时,数字随机化,但文本失去了它的 CSS 样式。

CSS

.numberStyle {
padding: 10px 10px 10px 10px;
color: blue;
}

.numberStyle span {
font-size: 100px;
}

HTML

<class id="number1" class="numberStyle"><span>1</span></class>
<input type="button" value="MATCH!" style="font-size:50px;"></input>

Javascript

function randomize() {
no1 = Math.ceil(Math.random() * 3);
}

function print() {
$("#number1").text(no1);
}

$().ready(function() {

$(":input").click(function() {
randomize()
print()
alert("Change")
})

})

我的 JSFiddle 链接:https://jsfiddle.net/he4rtbr0ken/9jfud4nz/2/

最佳答案

您想更改范围内的文本而不是#number1

function print() {
$("span").text(no1);
}

关于javascript - 使用javascript动态更改文本时保留CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35641997/

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