我認爲自己是Javascript語言的新手,並且我的代碼有問題。我試圖模擬一個簡單的if else語句,它涉及如果您的repel用完,程序會要求您使用另一個語句。但是,當我嘗試在Chrome上運行它時,屏幕上沒有顯示任何內容。拒絕ifElse語句
這裏是我的代碼:
<html>
<head>
</head>
<body>
<script type = "javascript/text">
var repelsInBag = 10;
if (repelsInBag > 1){
document.write("Would you like to use another repel?");
}else{
document.write("Repel effect has ran out");
}
</script>
</body>
</html>
提前感謝!
- 斯蒂芬
將type屬性更改爲「text/javascript」或完全忽略它。 –
另外,將腳本標籤放置在'
'標籤的底部,以便腳本在標記呈現後運行。 –