3

テキスト フィールドにスペースが入力された場合にユーザーに警告するスクリプトが必要です。javascript が必要だと思います。ユーザーがテキスト フィールドにスペースを入力しないようにするスクリプトを作成しています。

4

3 に答える 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 に答える