gpt4 book ai didi

javascript - 我们可以获得 jQuery Chosen 插件的最后一个未选择的值吗?

转载 作者:搜寻专家 更新时间:2023-11-01 04:43:22 26 4
gpt4 key购买 nike

我正在尝试获取最后一个未选择的值。我尝试了很多方法,但这可以给我最后选择的值(通过使用最后一个索引)而不是最后未选择的值。有什么办法吗?

$('#f_district').chosen().change( function(evt, params) {
if(params.deselected)
{
alert($(this).val()); // it returns null how I can get last unselect value?
}
else
{
var arr=$(this).val();
alert(arr[arr.length-1]);
}
});

最佳答案

你在看这样的东西吗 http://jsfiddle.net/Z2PkZ/1/

var previous;

$(".chosen").one('focus', function () {
// Store the current value on focus and on change
previous = this.value;
}).change(function() {
// Do something with the previous value after the change
console.log(previous);

// Make sure the previous value is updated
previous = this.value;
});

关于javascript - 我们可以获得 jQuery Chosen 插件的最后一个未选择的值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23904123/

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