所以我建立了一个计数器,但我没有设法实现 if 语句。
前任:
if (hits == 1) {alert("hello world1")}
if (hits == 2) {alert("hello world2")}
if (hits == 3) {alert("hello world3")}
if (hits == 4) {alert("hello world4")}
这是我的代码
<html>
<body>
<p id="hits" value="0"> </p>
<script>
var hits = 0;
var hitElement = document.getElementById("hits");
document.body.onkeyup = function(e) {
if (e.keyCode == 32) {addHit()}
}
var addHit = function() {hits++; renderHits()}
var renderHits = function() {hitElement.innerHTML = hits % 5}
var resetHits = function() {renderHits()}
</script>
</body>
</html>
另外我想知道是否有可能让它基于 .value 而不是 .innerHTML 工作(因为我的目标是空间计数器在“幕后”工作,所以它不应该是可见的)。
慕容3067478
哔哔one
慕尼黑8549860
相关分类