最新消息: 新版网站上线了!!!

php获取CheckBox值为on(复选框CheckBox没value属性的情况)

一、复选框CheckBox为选中状态checked="checked",但是没有value属性

<input class="tl-input" type="checkbox" name="grant[mgt_testplan_create]"  checked="checked"   />测试计划创建/编辑<br />

此时php获取值为on:

[grant] => Array( [mgt_testplan_create] => on)

二、复选框CheckBox为非选中状态,并且没有value属性


<input class="tl-input" type="checkbox" name="grant[mgt_testplan_create]"   />测试计划创建/编辑<br />


此时php获取值为空:

[grant] => Array( [mgt_testplan_create] => )

三、复选框CheckBox为选中状态checked="checked",有value属性并且值为空

<input class="tl-input" type="checkbox" name="grant[mgt_testplan_create]"  checked="checked"   value="" />测试计划创建/编辑<br />


此时php获取值为空:

[grant] => Array( [mgt_testplan_create] => )

四、复选框CheckBox为选中状态checked="checked",有value属性,比如值为8

<input class="tl-input" type="checkbox" name="grant[mgt_testplan_create]"  checked="checked"   value=8  />测试计划创建/编辑<br />


此时php获取值为空8:

[grant] => Array( [mgt_testplan_create] =>8 )


转载请注明:谷谷点程序 » php获取CheckBox值为on(复选框CheckBox没value属性的情况)