2

提交前如何检查文本框?

<form action='search.php' method='GET'>

         <input type="text" id= "q" name="q" class='textbox' >

         <input type="submit" id='submit' value="Search" class ='button' >

     </form>
4

4 回答 4

3

试试这个简单的 JavaScript 验证:

<html>
    <head>
        <script type="text/javascript">
            function check()
            {
                var searchtext = document.getElementById("q").value;
                if(searchtext=='')
                {
                    alert('Enter any character');
                    return false;
                }
            }
        </script>
    </head>
    <body>
        <form  action='search.php' method='GET' onSubmit="return check();">
            <input type="text" id= "q" name="q" class='textbox' >
            <input type="submit" id='submit' value="Search" class ='button' >
        </form>
    </body>
</html>
于 2013-04-14T09:43:14.073 回答
2
<?php
if(!empty($_GET['q']))
{
//if it is not empty, do something
}
else
{
//otherwise do this
}
?>

如果您要从表单发送内容,我是否还建议您使用 POST 而不是 GET。

于 2013-04-14T09:43:42.743 回答
0

您可以使用jQuery,如下所示:

$(function(){
    $('#submit').click(function(e){
        if($('#q').val() != null && $('#q').val().length > 0){
            $.get('search.php', $('#formId').serialize(), function(result){});
        }
        else{
            //Otherwise do this
        }
        e.preventDefault();
    });
});
于 2013-04-14T10:00:47.297 回答
0

您可以使用一些时尚的 jQuery 库来轻松编码,例如jQuery 验证插件

于 2013-06-16T05:53:14.240 回答