ecshop 电子商务程序中处理checkbox数组

2009-05-27 10:48 来源:www.chinab4c.com 作者:admin

    ecshop有很丰富的内置函数,方便电子商务程序员进行开发和维护,ecshop中对checkbox数组处理也十分灵活,在以下表单中:

                  input name="acc_type[]" type="checkbox" id="acc_type[]" value="3">
                  过户
                   
                  <input name="acc_type[]" type="checkbox" id="acc_type[]" value="4">
                  换号
                  &nbsp;
                  <input name="acc_type[]" type="checkbox" id="acc_type[]" value="5">
                  更改帐号

               通过js的getElementsByName()函数来进行js校验,对其进行控制,

for (i=0; i < document.getElementsByName("acc_type[]").length; i++) {
    if (document.getElementsByName("acc_type[]")[i].checked==true) {
  
      acc_type = true;
      break;
    }
 
  }

     来源:中国B4C电子商务