我想要一个脚本,如果在文本字段中输入空格,它应该提醒用户。我认为它需要 javascript。我正在编写一个脚本,我不希望用户在文本字段中输入空格。
user1656273
问问题
6232 次
3 回答
1
以下功能有效
$returnValue = preg_match('/[^a-z^A-Z^0-9]/', $str, $matches);
if ($returnValue==1)
{
alert("spaces & symbols are not allowed");
}
注意:它不仅限制了空格,还限制了符号。
于 2012-10-26T06:12:08.347 回答
0
使用match()
字符串的方法
<script type="text/javascript">
function checkForm()
{
var textb=document.getElementById("textbox1").value;
if(textb.match(' ')){
alert('Spaces not allowed!');
return false;
}
}
于 2012-10-23T18:43:12.627 回答
0
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready( function() {
$("textarea").keypress( function(e) {
if (e.which==32){
alert("spaces are not allowed");
}
});
});
</script>
<textarea></textarea>
于 2012-10-24T05:11:38.607 回答