如何获取所选选项的数据

时间:2018-09-14 07:34:06

标签: javascript jquery angularjs select

我正在使用此插件:

https://www.jqueryscript.net/demo/Drop-Down-Combo-Tree/

enter image description here

我不会获得该怎么办的身份证。

没有适用的文档。我有什么办法可以得到它吗?

<input type="text" id="justAnotherInputBox"
 placeholder="Type to filter" ng-change="showSummery(this)"/>



$scope.showSummery = function (data) {
        console.log(data)
};

2 个答案:

答案 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