我只需要在我的文本框中允許字母數字和空格,也可以在粘貼時允許字母數字和空格。輸入文本框驗證
如果在貼輸入 「/stackoverflow.com/#=」我需要stackoverflow.com
任何簡單的解決方案,或在線的例子嗎?
這是例如工作onkeypress事件
function isNumAlp(event) {
var theEvent = event || window.event;
var rv = true;
var key = (typeof theEvent.which === 'undefined') ? theEvent.keyCode : theEvent.which;
if (key && (key !== 8)) {
var keychar = String.fromCharCode(key);
var keycheck = /[.a-zA-Z0-9, ]/;
if (!keycheck.test(keychar)) {
rv = theEvent.returnValue = false; //for IE
if (theEvent.preventDefault) theEvent.preventDefault(); //Firefox
}
}
return rv;
}
@ThomasRollet我需要爲我的輸入形式,我不需要特殊字符。 – Pointer
請向我們顯示您的代碼 –
@ThomasRollet我只有幾個文本框的形式 – Pointer