一、過濾字串兩邊空格
1<
input
type
='text'
id='strs'
value
='
需要過濾兩邊的空格 '
>
2<
input
type
='button'
id='rstrsbtn'
value
=' 過濾 '
>
window.onload = function() };
二、驗證是否輸入
<input
type
='text'
id='strs'
value
='
需要過濾兩邊空格 '
>
<
input
type
='button'
id='iscontent'
value
='驗證是否為空'
><
br>
1 window.onload = function()else10}
11 };
三、禁止複製貼上
1<
input
type
="text"
name
="bancopypaste"
id='bancopypaste'
/><
br>
1var bancopypaste = document.getelementbyid("bancopypaste");
2 bancopypaste.oncopy = function()
5 bancopypaste.onpaste = function()
四、限制輸入(數字)
1<
form
>
2<
input
type
="number"
name
="numberhtml5"
value
='html5只能輸入數字'
id='bannumberhtml5'
/><
br>
3<
input
type
="text"
value
='html5只能輸入數字'
pattern
=[0-9]
id='patternhtml5'
/>
4<
input
type
="text"
name
="number"
value
='只能輸入數字'
id='bannumber'
/><
br>
5<
input
type
='submit'
value
='提交'
>
6form
>
1 window.onload = function()7 bannumber.onfocus = function()
10 bannumber.onkeyup = function()
13 bannumber.onblur = function()
16 };
五、限制輸入(中文)
1<
input
type
="text"
name
="number"
value
='只能輸入中文'
id='chinesestr'
/><
br>
1 window.onload = function()7 chinesestr.onfocus = function()
1011 chinesestr.onkeyup = function()
14 chinesestr.onblur = function()
17 };
JS實用小功能
獲取使用者ip ua 城市 操作cookie function getcookie c name return unescape document.cookie.substring c start,c end return function setcookie c name,value,expire...
Extjs實用簡單小功能總結
1 陣列求最大,最小值,判斷是否包含元素 array.prototype.max function array.prototype.min function array.prototype.s string.fromcharcode 2 array.prototype.contain functio...
JS常用小功能
個人部落格 常用小功能 陣列去重 字串反轉 陣列去扁平化並去重排序 判斷陣列的方法 陣列並集 交集 差集 var arr1 1 2,3 4 var arr2 2 4,6 8 使用includes var union arr1.concat arr2.filter v arr1.includes v ...