php處理html中的input元素的name屬性的傳值有這樣的用法:name=“a[]”,這樣寫,如果多個input都為這樣的name,那么傳遞的值就是一個數(shù)組,如果不加"[]",則只有一個值。
源代碼如下:
以復(fù)選框為例:
源代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>model</title> <meta http-equiv="Content-language" content="zh-CN" /> <script type="text/javascript"> //<![CDATA[ window.onload=function(){ var form = document.getElementById('form'); form.onsubmit=function(){ var users = document.getElementsByName('user[]'); for(var i=0; i<users.length; i++){ if(users[i].value==''){ alert('Value is null.'); return false; } } return true; }; } //]]> </script> </head> <body> <div> <form id="form" action="" method="get"> UserID<input name="user[]" /><br /> UserID<input name="user[]" /><br /> UserID<input name="user[]" /><br /> <input type="submit" /> </form> </div> </body> </html>php的form中元素name屬性相同時的取值問題:修改元素的名稱,在名稱后面加上 '[]',然后取值時即可得array()數(shù)組
以復(fù)選框為例:
<html> <head> <title>php取checkbox多選框的值</title> </head> <body> html復(fù)選框,如果以數(shù)據(jù)組形式發(fā)送給php腳本,則須以checkbox[]形式。 <form id="form1" name="form1" method="post" action=""> <label> <input type="checkbox" name="checkbox[]" value="www.aa.com" /> </label> <label> <input type="checkbox" name="checkbox[]" value="www.bb.com" /> </label> <label> <input type="checkbox" name="checkbox[]" value="www.cc.com" /> </label> <label> <input type="checkbox" name="checkbox[]" value="www.dd.com" /> </label> <label> <input type="submit" name="Submit" value="提交" /> </label> </form> </body> </html> <? //判斷是否點擊提交 if( $_POST ) { $array = $_POST['checkbox']; print_r($array); } /* 結(jié)果: Array ( [0] => www.aa.com [1] => www.bb.co [2] => www.cc.co [3] => www.dd.co ) */ ?>