A Blog for programming & technical solutions
function checknum(value) { var Regx = /^[A-Za-z0-9]*$/; if (Regx.test(value)) { return true; } else { return false; } }
No comments:
Post a Comment