Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用敲除 + select2 并且我的下拉列表之一的数据是使用 ajax 延迟加载的(select2 支持)。
我需要能够绑定下拉列表的选定文本,但找不到方法。
有谁知道这是否可能?
我已经使用 knockoutjs 事件绑定成功地做到了这一点:
HTML:
select2: { minimumInputLength: 3, allowClear: true, query: ajaxQuery }, event: { change: eventHandler }" />
JS:
self.eventHandler = function (data, event) { };
在事件对象中将根据发生的更改调用添加或删除的属性。然后,您可以使用此值来更新您的视图模型。