gpt4 book ai didi

JavaScript DOM 问题

转载 作者:行者123 更新时间:2023-12-02 20:11:43 25 4
gpt4 key购买 nike

<html>
<head>
<script type="text/javascript">
var c=0;
var t;
var timer_is_on=0;

function timedCount()
{
document.getElementById('txt').value=c;
if(c == 100) return;
c=c+1;
t=setTimeout("timedCount()",30);
}

function doTimer()
{
if (!timer_is_on)
{
timer_is_on=1;
timedCount();
}
}
</script>
</head>

<body onload="doTimer()">
<form>
<input type="button" value="Start count!">
<input type="text" id="txt">
</form>
<p>Click on the button above. The input field will count forever, starting at 0.</p>
</body>
</html>

我想改变

<input type="text" id="txt">

进入

<div type="text" id="txt">

这不起作用。我认为问题在于

document.getElementById('txt').value=c;

但是我尝试过

document.getElementById('txt').innerHTML=c;

还是不行。有人能告诉我为什么吗?干杯!!!

最佳答案

设置文本框的值将填充文本框中的文本。如果你想用 div 替换输入,你应该使用:

element.replaceChild(newDiv, oldTextbox);

尝试:

var div = document.createElement("DIV");
div.id = "txt";
div.innerText = "Hello world!";

var tb = document.getElementById("txt");
tb.parentElement.replaceChild(div, tb);

关于JavaScript DOM 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6875059/

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