doumi1912 2015-03-03 09:44
浏览 60

在调用php函数之前验证html5表单?

I currently have a html5 form with a basic text-area inside of it, when you hit the submit button a php script is called that sends the data to the database.

However, before the PHP script is called, I would like to run some validation on the form (checking if it is null etc...) before the PHP is called, preferably in javascript.

Is there a way I can do this?

Thanks.

Html5 form:

<form action="submit.php" method="POST">
            <tr>
                <td id="textBox-back">  
                    <textarea id="rage-box" type="text" name="rage" cols="40" rows="5" maxlength="160"> </textarea>

                    <input id="submit" value="" name="submit" type="submit"/>


                </td>           

        </form>     
  • 写回答

2条回答 默认 最新

  • duandu1915 2015-03-03 09:48
    关注
    <script language="javascript">
       function validate(){
    
           //Code of validation
    
           return false;
        }
    </script>
    
    
    <form action="submit.php" method="POST" onsubmit="return validate();">
            <tr>
                <td id="textBox-back">  
                    <textarea id="rage-box" type="text" name="rage" cols="40" rows="5" maxlength="160"> </textarea>
    
                    <input id="submit" value="" name="submit" type="submit"/>
    
    
                </td>           
    
        </form>   
    
    评论

报告相同问题?

悬赏问题

  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?