Only allow certain characters to be entered in htm

2019-01-15 13:03发布

I just need to allow a user to enter the following characters in the textinput:

a-zA-Z0-9!@#$%^*_|

<form action="http://www.cknuckles.com/cgi/echo.cgi" method="get" name="logOn">
  User Name:<br />
  <input type="text" name="userName" size="25" /><br />
  Password:<br />
  <input type="password" name="pw" size="25" /><br />
  <input type="submit" value="Log In" onClick="validate()"/> 
</form>

Above is my HTML, and Below is my JavaScript I tried to use to validate it - but it doesnt work - any clues.

<script language="javascript">
   document.logOn.onsubmit=validate;

   function validate(){

var name=document.logOn.pw.value;
    if(!name = "[a-zA-Z0-9!@#$%^*_|]"){              
alert("Your Password Cant Have any thing other than a-zA-Z0-9!@#$%^*_| - Play It Straight!");
    return false;
}               

    return true;
}

</script>

But This isnt working. I can still put chars in like ">" and "<" and "{" etc.

Any Thoughts?

5条回答
我想做一个坏孩纸
2楼-- · 2019-01-15 13:11

Try this and revert me back if it works for you

function validate(){
        var name=document.logOn.pw.value;
        var test = new RegExp("[a-zA-Z0-9!@#$%^*_|]");
        if(!name.match(test)){              
           alert("Your Password Cant Have any thing other than a-zA-Z0-9!@#$%^*_| - Play It                     Straight!");
        return false;
  }               
   return true;
}

http://jsfiddle.net/KJEcG/

查看更多
神经病院院长
3楼-- · 2019-01-15 13:14

You can try in your input text as below:

<input type="text" pattern="[a-zA-Z0-9!@#$%^*_|]{6,25}" />

So the code changes look like below:

    <form action="#" method="get">
       User Name:<br />
       <input type="text" pattern="[a-zA-Z0-9!@#$%^*_|]{6,25}" /><br />
       Password:<br />
       <input type="password" /><br />
       <input type="submit" value="Log In" /> 
   </form>

this will do it without using JavaScript. pattern can be used instead.

It is rather effective than JavaScript for form validation.

查看更多
Rolldiameter
4楼-- · 2019-01-15 13:19

Try this...

if(!/[a-zA-Z0-9!@#$%^*_|]./.test(name)){    
查看更多
爱情/是我丢掉的垃圾
5楼-- · 2019-01-15 13:22

use this

<script language="javascript">
document.logOn.onsubmit=validate;

function validate(){

var name=document.logOn.pw.value;
var reg=/[^a-zA-Z0-9\!\@\#\$\%\^\*\_\|]+/;
if(reg.test(name)){              
alert("Your Password Cant Have any thing other than a-zA-Z0-9!@#$%^*_| - Play It    Straight!");
return false;
}               

return true;
}

</script>
查看更多
SAY GOODBYE
6楼-- · 2019-01-15 13:30

This should do

<input type="text" name="something" pattern="[a-zA-Z0-9!@#$%^*_|]{0,100}">
查看更多
登录 后发表回答