1. 程式人生 > >easyui combobox中textField字段的拼接

easyui combobox中textField字段的拼接

NPU uefi 分享 ble 技術分享 lse true code option

要得到如下圖的效果: 省市區的拼接

技術分享圖片

1.數據庫中的數據如圖:

技術分享圖片

2.combobox

<td>選擇區域</td>
                            <td>
                                <input type="text"
                                 class="easyui-combobox" 
                                 id="areaType"
                                name
="area.id" editable="false" data-options="required:true,valueField:‘id‘,textField:‘name‘, url:../../area_list.action‘" /> </td>

2.采用js代碼進行拼接:

                 $(‘#areaType‘).combobox({
                    formatter:
function(row){ return ‘<span class="item-text">‘+row.province+row.city+row.district+‘</span>‘; } })

easyui combobox中textField字段的拼接