组装树状结构文本框

Posted xianz666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组装树状结构文本框相关的知识,希望对你有一定的参考价值。

技术图片

 

 

 jsp代码===

<tr>
<td align="right">监测类别:</td>
<td><select class="easyui-combotree" style="margin-top: 7px"
name="monitoringCategory" id="monitoringCategory"
data-options="editable:false">
<option value="">请选择监测类别</option>
</select></td>
<td align="right">产品类别:</td>
<td><select name="productCategory" id="productCategory"
class="easyui-combotree" data-options="editable:false">
<option value="">请选择产品类别</option>
</select></td>
</tr>

 

js代码=======

//加载监测类别字典(添加)
$("#monitoringCategory").combotree({
url: ‘<%=basePath%>xyData/dict/LookupDictFid.do?fid=‘ + ‘213‘,
valueField: "id",
textField: "text",
lines: true,
required: true,
onBeforeExpand: function (node, param) {
$(this).tree(‘options‘).url = "<%=basePath %>xyData/dict/LookupDictFid.do?pid=" + node.id + "&fid=" + ‘213‘;
},
onBeforeSelect: function(node) {
if (!$(this).tree(‘isLeaf‘, node.target)) {
return false;
}
}

});

 

//加载产品类别字典(添加)
$("#productCategory").combotree({
url: ‘<%=basePath%>xyData/dict/LookupDictFid.do?fid=‘ + ‘214‘,
valueField: "id",
textField: "text",
lines: true,
required: false,
onBeforeExpand: function (node, param) {
$(this).tree(‘options‘).url = "<%=basePath %>xyData/dict/LookupDictFid.do?pid=" + node.id + "&fid=" + ‘214‘;
},
onBeforeSelect: function(node) {
if (!$(this).tree(‘isLeaf‘, node.target)) {
return false;
}
}
});

以上是关于组装树状结构文本框的主要内容,如果未能解决你的问题,请参考以下文章

请教如何用word做树状图

SecureFX怎么打开本地文件框

Vue - 监听文本框数据的三种方法

vb怎么把结果输出到文本框里?

文本算法-Ctpn(用于进行文本框的提取)

在js中怎么让文本框显示的字符变成密码格式