在很多情況下,我們都需要登陸、註冊等,如果輸入的東西不符合要求,那麼就會無法提交資料內容。
我們這次的介面設計裡面用到了這個,覺得有用拿來看看。
序號
這裡的pattern裡面是正規表示式規則,是在text裡面輸入符合規則的資料,這個簡單的就是輸入的資料必須是0到9數字。
管理者
儲存
這個是用到了jsp,在按鈕裡面加入了onclick()判斷對應id的text裡面值是否合格。
function checkempno() $/;
var emp_no = document.myform.emp_no;
if (!reg.test(emp_no.value))
else
}
如果要使用正規表示式的話,形式應該如這個。而這個也是用到了jsp裡面的好些語法來。 input實時監聽文字框內容
在做搜尋時經常會用到我們需要監聽input input on keydown function 因為keydown事件處理函式中立即獲取文字框中的內容,通常會有乙個字元的偏差 他是在鍵盤按下瞬間觸發所以基本不用這個方法,html5新增屬性input 非常nice input on input fun...
JS案例 顯示隱藏文字框內容
doctype html en utf 8 viewport content width device width,initial scale 1.0 x ua compatible content ie edge document title input style head text value...
js判斷兩文字框內輸入的數字大小
js部分 1 if document.frmpressure.systolic.value document.frmpressure.diastolic.value 錯誤的寫法 2 if parseint document.frmpressure.systolic.value parseint do...