Home  >  Article  >  Backend Development  >  form 提交 验证问题

form 提交 验证问题

WBOY
WBOYOriginal
2016-06-23 14:24:46843browse

function url js php

比如
" method="GET" onsubmit="add()">
   input->get('call');?>" />

 



<script> <br /> function add(){ <br /> var call= $("#call").attr("value"); <br /> if(call== ""){ <br /> alert("NO"); <br /> return false; <br /> } <br /> } <br /> <br /> </script>

---------------------------------------------------------
我的问题是,这样实现提交form 表单的时候先js 验证是否为空,然后在跳到后台去验证。

回复讨论(解决方案)

<form action="<?php echo base_url('heli/add'); ?>" method="GET" onsubmit="return add();">   <input name="call" name="call" type="text" value="<?php echo  $this->input->get('call');?>" /> <td><input type="submit" value="添加"  /></td></form><script type="text/javascript">  function add(){    var call= $("#call").attr("value");    if(call== ""){      alert("NO");      return false;    }    return true;  }</script>

基本上你已经写出来了, 记得要包含jquery的库
否则要用document.getElementById('')这样获取值

<form action="<?php echo base_url('heli/add'); ?>" method="GET" onsubmit="return add();">   <input name="call" name="call" type="text" value="<?php echo  $this->input->get('call');?>" /> <td><input type="submit" value="添加"  /></td></form><script type="text/javascript">  function add(){    var call= $("#call").attr("value");    if(call== ""){      alert("NO");      return false;    }    return true;  }</script>

基本上你已经写出来了, 记得要包含jquery的库
否则要用document.getElementById('')这样获取值


---------------------------------------
我在提交的时候,还是没有验证 直接跳到后台了

<form action="test3.php" method="GET" onsubmit="return add();">   <input name="call" id="call" type="text" value=""/> <td><input type="submit" value="添加"  /></td></form>  <script type="text/javascript">  function add(){    var call= document.getElementById('call').value;    if(call== ""){      alert("NO");      return false;    }    return true;  }</script>好人做到底吧,帮你调试一下。你没有检查而直接提交是因为JS有错误,有可能是因为没有引入jquery的原因。

<form action="test3.php" method="GET" onsubmit="return add();">   <input name="call" id="call" type="text" value=""/> <td><input type="submit" value="添加"  /></td></form>  <script type="text/javascript">  function add(){    var call= document.getElementById('call').value;    if(call== ""){      alert("NO");      return false;    }    return true;  }</script>好人做到底吧,帮你调试一下。你没有检查而直接提交是因为JS有错误,有可能是因为没有引入jquery的原因。

-----------------------------------------------------
谢谢 大虾大力帮助 
jquery 引入了 js 没有问题:
因为我用 

去获取值都可以的,所以js 和jquery 都没有问题,只是在form 表单提交时候 不进过js 验证

你input里面有两个name属性哦,应该是一个id一个name!你改下看下能不能行。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn