Select2 更改删除的 id 值
Select2 on change removed id value
在 select2
版本 3 中,我得到 e.removed.id
作为先前 select2
值的值,但在版本 4 中没有。
所以我无法通过这种方式获得之前更改的 select2
值。我可以将它保存在变量中,但从事件中获取更容易。
谁能证实一下。
属性 removed
在 select2
的第四个版本中被 select2:unselect
事件取代,您会注意到 version 4.0.0-BETA.2 BREAKING CHANGES.
All extra properties of change
have been removed :
- val - Use
$element.val()
instead
- removed - Use the
select2:unselect
event instead
- added - Use the
select2-selected
event instead
希望对您有所帮助。
在 select2
版本 3 中,我得到 e.removed.id
作为先前 select2
值的值,但在版本 4 中没有。
所以我无法通过这种方式获得之前更改的 select2
值。我可以将它保存在变量中,但从事件中获取更容易。
谁能证实一下。
属性 removed
在 select2
的第四个版本中被 select2:unselect
事件取代,您会注意到 version 4.0.0-BETA.2 BREAKING CHANGES.
All extra properties of
change
have been removed :
- val - Use
$element.val()
instead- removed - Use the
select2:unselect
event instead- added - Use the
select2-selected
event instead
希望对您有所帮助。