gpt4 book ai didi

javascript - 向进度条添加百分号

转载 作者:太空宇宙 更新时间:2023-11-04 15:29:49 26 4
gpt4 key购买 nike

我正在制作一个非常简单的进度条,一切正常,除了一件事……百分号。我的代码在下面,我的问题是如何在不弄乱脚本的情况下向其添加百分号。 - JsFiddle

代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon" href="Assets/IMG/Roz.png" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Apache Testing Server</title>
<style type="text/css">
#ProgressWrap {
height:30px;
width:300px;
border:1px solid #222;
text-align:center;
position:relative;
}

#ProgressStat {
height:30px;
width:0%;
background-color:#9CF;
position:absolute;
top:0px;
left:0px;
}

#ProgressPer {
width:100%;
height:30px;
line-height:30px;
position:absolute;
top:0px;
left:0px;
z-index:1000;
}
</style>

<script type="text/javascript">
window.onload = function() {
document.getElementById('ProgressPer').innerHTML = 0;

var Change = setInterval(function() {
var Per = document.getElementById('ProgressPer').innerHTML;
++Per
if(Per == 101)
{
clearInterval(Change);
}
else
{
document.getElementById('ProgressPer').innerHTML = Per;
var Bar = document.getElementById('ProgressStat');
Bar.style.width = Per + '%';
}
}, 50);
}
</script>
</head>

<body>
<div id="ProgressWrap">
<div id="ProgressPer"></div>
<div id="ProgressStat"></div>
</div>
</body>
</html>

最佳答案

你需要改变这两行:

var Per = document.getElementById('ProgressPer').innerHTML.replace('%','');

document.getElementById('ProgressPer').innerHTML = Per.toString() + '%';

See the fiddle .

您的代码没有任何问题,但它并没有真正遵循 javascript 样式指南。此外,不必在计算中采用 innerHTML 值。这是要考虑的另一个版本。

var pct = 0,
change = setInterval(function () {
++pct;
if (pct == 101) {
clearInterval(change);
} else {
document.getElementById('ProgressPer').innerHTML = pct.toString() + '%';
var bar = document.getElementById('ProgressStat');
bar.style.width = pct + '%';
}
}, 50);

关于javascript - 向进度条添加百分号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15452459/

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