我正在使用此插件:
https://www.jqueryscript.net/demo/Drop-Down-Combo-Tree/
我不会获得该怎么办的身份证。
没有适用的文档。我有什么办法可以得到它吗?
<input type="text" id="justAnotherInputBox"
placeholder="Type to filter" ng-change="showSummery(this)"/>
$scope.showSummery = function (data) {
console.log(data)
};
答案 0 :(得分:1)
尝试一下
<input type="text" id="justAnotherInputBox"
placeholder="Type to filter" ng-change="showSummery()"/>
$scope.showSummery = function () {
console.log(document.getElementById("justAnotherInputBox").value)
};
答案 1 :(得分:0)
如果您使用底部代码定义组合树:
var comboTree2;
comboTree2 = $('#justAnotherInputBox').comboTree({
source: dataJson,
isMultiple: false
});
然后您可以使用底部代码获取所选值的ID:
comboTree2._selectedItem.id