我想要一个脚本,如果在文本字段中输入空格警告用户。我认为它需要javascript。我正在编写一个脚本,我不希望用户输入空格在文本字段中。
答案 0 :(得分:1)
以下功能
$returnValue = preg_match('/[^a-z^A-Z^0-9]/', $str, $matches);
if ($returnValue==1)
{
alert("spaces & symbols are not allowed");
}
注意: 它不仅限制空格,还限制符号。
答案 1 :(得分:0)
使用match()
字符串方法
<script type="text/javascript">
function checkForm()
{
var textb=document.getElementById("textbox1").value;
if(textb.match(' ')){
alert('Spaces not allowed!');
return false;
}
}
答案 2 :(得分: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>