gpt4 book ai didi

javascript - 如何获取选中选项的数据

转载 作者:行者123 更新时间:2023-12-01 01:41:50 25 4
gpt4 key购买 nike

我正在使用这个插件:

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

enter image description here

我无法获得该 ID,我该怎么办?

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

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



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

最佳答案

您可以在 <li> 上放置一个 onclick 监听器低于<input> :

$('#justAnotherInputBox')
.parents('div.comboTreeWrapper')
.find('div.comboTreeDropDownContainer')
.on('click','li.ComboTreeItemChlid',function() {
var id=$(this).find('span').attr('data-id');
/* the rest of your code */
});

请注意拼写错误“ComboTreeItemChlid”。它也在插件中。

关于javascript - 如何获取选中选项的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52327059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com