<script>
function showUploading() {
if (document.form['form']['name'].value != "" &&
document.form['form']['city'].value != "")) {
document.getElementById('submit') .style.visibility = "hidden";
document.getElementById('uploading').style.visibility = "visible";
}
}
</script>
使用上面的腳本我想驗證「name」和「city」表單輸入是否爲空。不知何故,我無法得到這個工作,即使輸入是充滿文本條件仍然返回false。下面是輸入:Javascript - 驗證空輸入
<input required="required" id="name" name="name" type="text">
<input required="required" id="city" name="city" type="text">
我也想:
if (document.getElementById('name').value != "")
上述方法都沒有爲我工作。這裏有什麼問題?
其中是將觸發showUploading代碼()? – atmd 2014-12-19 10:13:18
_這裏有什麼錯?_在這裏,什麼都沒有。也許在其他地方。 – melancia 2014-12-19 10:14:45