我已經查看了一些答案,但由於某些原因,我無法使其工作。我希望用戶對某些東西進行評分,如果他們在所需字段中沒有輸入任何內容,並按下「等級」,我想讓它提醒一些事情。確定用戶輸入字段是否爲空
function Script() {
var G = document.getElementById("gradevalue").value
if (G == null || G == undefined) {
window.alert("Please input a grade");
}
}
<label id="grade">|Please grade on a scale from 1 to 10 (10 is the best!)
<input id="gradevalue" type="text"; size="2"; maxlength="2">
</label>
<input type="button" value="GRADE!" id="nota" onclick="Script()">
我非常新的這個,所以請不要太苛刻。
您沒有檢查空字符串? 'G ==「」' –
只需檢查一個類似虛假的值怎麼樣? 'if(!! G)' – pkanev
不相關但刪除HTML屬性之間的分號。 –