This Domain(Admin5.com) is for Sale:

处理多个同名复选框

时间:2007-11-14  来源:收集  作者:TUPS

假如一个表单中有多个同名复选框,在提交到php时却只有一个值,而并不像asp那样是一串用逗号分割的值。有一个很简单的方法来解决:将复选框的name后面加上[],例如:
  <inputtype="checkbox"name="ccc"value="1">
改为:<inputtype="checkbox"name="ccc[]"value="1">。
  这样php将得到一个叫ccc的阵列。假如您要在客户端对复选框是否被选择、选择了几个用javascript来判定时,javascript会因为复选框的name中含有[]而出错。可以在表单中加入一个隐含域,用javascript设置它的值:
<scriptlanguage="javascript">
functioncheck()
{
varstrchoice="";
for(vari=0;i<document.news.choice.length;i )
{
if(document.news.choice[i].checked)
{
strchoice=strchoice document.news.choice[i].value ",";
}
}
if(!document.news.choice.length)
{
if(document.news.choice.checked)
{
strchoice=document.news.choice[i].value; ","
}
}
strchoice=strchoice.substring(0,strchoice.length-1); copyright dedecms
document.news.choiceid.value=strchoice;
alert(document.news.choiceall.value);
}
</script>
<html>
...
<formname="news"action="test.php"method="post"onsubmit="check()">
<inputtype="checkbox"name="choice"value="1">
<inputtype="checkbox"name="choice"value="2">
<inputtype="checkbox"name="choice"value="3">
<inputtype="checkbox"name="choice"value="4">
<inputtype="hidden"name="choiceid"value="">
</form>
...
</html>

dedecms.com

看完这篇,您有何感觉呢?

文章评论

共有位Admini5网友发表了评论 查看完整内容

推荐信息

24小时热门信息