追加下拉框的自动生成
Posted 满血复活的回来写代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了追加下拉框的自动生成相关的知识,希望对你有一定的参考价值。
/** * 下拉选择基础方法 * @param type $selected_value * @param type $select_rows * @param type $key * @param type $value * @param type $_first_option * @return string */ function select($selected_value, $select_rows, $key, $value, $_first_option = array()) { if (count($_first_option) > 0 && is_array($_first_option)) { list($first_key, $first_value) = each($_first_option); $html = ‘<option value="" ‘ . (($selected_value == $first_key) ? ‘selected="selected"‘ : ‘‘) . ‘>‘ . $first_value . ‘</option>‘; } foreach ($select_rows as $select_row) { $id = array(); $value_arr = array(); if (is_array($key)) { foreach ($key as $_key) { $id[] = $select_row[$_key]; } //$this->dump($id); $id = implode("|", $id); } else { $id = $select_row[$key]; } if (is_array($value)) { foreach ($value as $value_key) { $value_arr[] = $select_row[$value_key]; } //$this->dump($id); $value_arr = implode(‘_‘, $value_arr); } else { $value_arr = $select_row[$value]; } $selected = ($selected_value == $id && $selected_value != ‘‘) ? ‘selected="selected"‘ : ‘‘; $html .= ‘<option value="‘ . $id . ‘" ‘ . $selected . ‘>‘ . $value_arr . ‘</option>‘; } return $html; }
以上是关于追加下拉框的自动生成的主要内容,如果未能解决你的问题,请参考以下文章
谁知道怎么用ajax实现选择下拉框的时候动态从数据库读取数据吗
Robot Framework写自动化用例怎么写选择下拉框,然后根据下拉框的值点击搜索的用例啊