1. 程式人生 > >html之input 的非空驗證

html之input 的非空驗證

   if (Username == "" || Username.value == null ) {
                alert("請輸入內容");
            }
在這裡可以通過input的id   var Username = document.getElementById("UserName").value; 獲取,然後判斷是否為空