<script language="JavaScript" type="text/javascript">
var theBar = createProgressBar(document.getElementById('progress-bar'));
var value;
function resetValue() {
value = 0;
}
function showProgress() {
value += 1;
theBar.setValue(value);
if (value < 100) {
window.setTimeout(showProgress, 100);
}
if (value = 100) {
window.location = 'http://google.com';
}
}
window.onload=resetValue();showProgress();
</script>
我试图在计时器达到10秒后重定向,但我尝试的东西似乎不起作用(立即重定向)。
不熟悉JS,我尽力模仿
答案 0 :(得分:2)
=
表示作业
if (value == 100) { ...