私が達成したいことは<select>
ドロップダウンが変更されるときはいつでも私は変更前のドロップダウンの値が欲しいです。私はjqueryの1.3.2バージョンを使用していて、変更イベントを使用していますが、私がそこを乗り越えている値は変更後です。
<select name="test">
<option value="stack">Stack</option>
<option value="overflow">Overflow</option>
<option value="my">My</option>
<option value="question">Question</option>
</select>
Onchangeイベントでスタックに変更したとき(つまり、スタックに変更したとき)、Myオプションが現在選択されているとします。以前の値、つまりこの場合は私の期待値です。
どうすればこれを達成できますか?
編集:私の場合、同じページに複数の選択ボックスがあり、それらすべてに同じものを適用したいと考えています。また、私のすべての選択は、Ajaxを介したページのロード後に挿入されます。
フォーカスイベントと変更イベントを組み合わせて、必要なものを実現します。
(function () {
var previous;
$("select").on('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
alert(previous);
// Make sure the previous value is updated
previous = this.value;
});
})();
このためにグローバル変数を使用しないでください - ここでデータにprev値を格納するのは一例です。 http://jsbin.com/uqupu3/2/edit
refのコード
$(document).ready(function(){
var sel = $("#sel");
sel.data("prev",sel.val());
sel.change(function(data){
var jqThis = $(this);
alert(jqThis.data("prev"));
jqThis.data("prev",jqThis.val());
});
});
ページ上に多数の選択項目があることを確認しました - 各選択項目について、選択項目のデータにprev値を格納するため、この方法も有効です。
私はjquery.data()
を使うAvi Pintoの解決策を取りに行きます
フォーカスを使用することは有効な解決策ではありません。あなたが最初にオプションを変更したときにはたらきますが、あなたがそのselect要素のままで、そしてキー「上」または「下」を押すなら。それは再びフォーカスイベントを通過しません。
そのため、解決策は次のようになります。
//set the pre data, usually needed after you initialize the select element
$('mySelect').data('pre', $(this).val());
$('mySelect').change(function(e){
var before_change = $(this).data('pre');//get the pre data
//Do your work here
$(this).data('pre', $(this).val());//update the pre data
})
手で値を追跡します。
var selects = jQuery("select.track_me");
selects.each(function (i, element) {
var select = jQuery(element);
var previousValue = select.val();
select.bind("change", function () {
var currentValue = select.val();
// Use currentValue and previousValue
// ...
previousValue = currentValue;
});
});
$("#dropdownId").on('focus', function () {
var ddl = $(this);
ddl.data('previous', ddl.val());
}).on('change', function () {
var ddl = $(this);
var previous = ddl.data('previous');
ddl.data('previous', ddl.val());
});
私はイベント "live"を使用しています。私の解決策は基本的にDimitarと似ていますが、 "focus"を使用する代わりに、 "click"がトリガーされたときに以前の値が保存されます。
var previous = "initial prev value";
$("select").live('click', function () {
//update previous value
previous = $(this).val();
}).change(function() {
alert(previous); //I have previous value
});
私はこれが古いスレッドであることを知っていますが、私はもう少し追加するかもしれないと思いました。私の場合は、テキスト、val、その他のデータ属性を渡したいと思っていました。この場合、オプション全体を単なるvalではなくprev値として格納するほうが良いでしょう。
以下のコード例:
var $sel = $('your select');
$sel.data("prevSel", $sel.clone());
$sel.on('change', function () {
//grab previous select
var prevSel = $(this).data("prevSel");
//do what you want with the previous select
var prevVal = prevSel.val();
var prevText = prevSel.text();
alert("option value - " + prevVal + " option text - " + prevText)
//reset prev val
$(this).data("prevSel", $(this).clone());
});
編集:
要素に.clone()を追加するのを忘れていました。そうしないと、値を引き戻そうとしたときに、前の値ではなく選択の新しいコピーが引き出されます。 clone()メソッドを使用すると、インスタンスの代わりにselectのコピーが保存されます。
ドロップダウンの 'on change'アクション関数を書く前に、現在選択されているドロップダウン値を、選択されたjqueryとともにグローバル変数に保存してください。関数に以前の値を設定したい場合は、グローバル変数を使用できます。
//global variable
var previousValue=$("#dropDownList").val();
$("#dropDownList").change(function () {
BootstrapDialog.confirm(' Are you sure you want to continue?',
function (result) {
if (result) {
return true;
} else {
$("#dropDownList").val(previousValue).trigger('chosen:updated');
return false;
}
});
});
角度付きウォッチ型インターフェースでカスタムjQueryイベントを使用するのはどうでしょうか。
// adds a custom jQuery event which gives the previous and current values of an input on change
(function ($) {
// new event type tl_change
jQuery.event.special.tl_change = {
add: function (handleObj) {
// use mousedown and touchstart so that if you stay focused on the
// element and keep changing it, it continues to update the prev val
$(this)
.on('mousedown.tl_change touchstart.tl_change', handleObj.selector, focusHandler)
.on('change.tl_change', handleObj.selector, function (e) {
// use an anonymous funciton here so we have access to the
// original handle object to call the handler with our args
var $el = $(this);
// call our handle function, passing in the event, the previous and current vals
// override the change event name to our name
e.type = "tl_change";
handleObj.handler.apply($el, [e, $el.data('tl-previous-val'), $el.val()]);
});
},
remove: function (handleObj) {
$(this)
.off('mousedown.tl_change touchstart.tl_change', handleObj.selector, focusHandler)
.off('change.tl_change', handleObj.selector)
.removeData('tl-previous-val');
}
};
// on focus lets set the previous value of the element to a data attr
function focusHandler(e) {
var $el = $(this);
$el.data('tl-previous-val', $el.val());
}
})(jQuery);
// usage
$('.some-element').on('tl_change', '.delegate-maybe', function (e, prev, current) {
console.log(e); // regular event object
console.log(prev); // previous value of input (before change)
console.log(current); // current value of input (after change)
console.log(this); // element
});
さて、なぜあなたは現在の選択された値を保存しないでください、そして、選択されたアイテムが変更されるときあなたは古い値を保存されるでしょうか? (そしてあなたが望むようにそれを再び更新することができます)
(function() {
var value = $('[name=request_status]').change(function() {
if (confirm('You are about to update the status of this request, please confirm')) {
$(this).closest('form').submit(); // submit the form
}else {
$(this).val(value); // set the value back
}
}).val();
})();
次のコードを使用して、私はそれをテストしてきました
var prev_val;
$('.dropdown').focus(function() {
prev_val = $(this).val();
}).change(function(){
$(this).unbind('focus');
var conf = confirm('Are you sure want to change status ?');
if(conf == true){
//your code
}
else{
$(this).val(prev_val);
$(this).bind('focus');
return false;
}
});
私はこの問題を解決するための他の選択肢に貢献したいと思います。上記で提案された解決策は私のシナリオを解決しなかったので。
(function()
{
// Initialize the previous-attribute
var selects = $('select');
selects.data('previous', selects.val());
// Listen on the body for changes to selects
$('body').on('change', 'select',
function()
{
$(this).data('previous', $(this).val());
}
);
}
)();
これはjQueryを使っているのでdefです。ここでの依存関係ですが、これは純粋なJavaScriptで動作するように調整することができます。 (本体にリスナーを追加し、元のターゲットが選択、実行関数などかどうかを確認してください。).
変更リスナーを本体にアタッチすることで、selectに対して after 特定のリスナーが起動することを確実に確認できます。そうしないと 'data-previous'の値が読める前に上書きされてしまいます。
これはもちろん、あなたがset-previousとcheck-valueに別々のリスナーを使うのを好むと仮定しています。それは単一責任のパターンにぴったり合っています。
注:これにより、この '前の'機能がall選択に追加されるので、必要に応じてセレクターを微調整してください。
あなたが望む結果を達成するにはいくつかの方法があります。
要素に以前の値を保持させて、属性 'previousValue'を追加します。
<select id="mySelect" previousValue=""></select>
初期化されると、 'previousValue'を属性として使用できるようになりました。 JSでは、これのpreviousValueにアクセスするには、次のように選択します。
$("#mySelect").change(function() {console.log($(this).attr('previousValue'));.....; $(this).attr('previousValue', this.value);}
'previousValue'を使い終わったら、属性を現在の値に更新します。
最良の解決策:
$('select').on('selectric-before-change', function (event, element, selectric) {
var current = element.state.currValue; // index of current value before select a new one
var selected = element.state.selectedIdx; // index of value that will be selected
// choose what you need
console.log(element.items[current].value);
console.log(element.items[current].text);
console.log(element.items[current].slug);
});
これは@thisisborisの回答に対する改善です。現在の値をデータに追加するので、現在の値に設定されている変数をいつ変更するかをコードで制御できます。
(function()
{
// Initialize the previous-attribute
var selects = $( 'select' );
$.each( selects, function( index, myValue ) {
$( myValue ).data( 'mgc-previous', myValue.value );
$( myValue ).data( 'mgc-current', myValue.value );
});
// Listen on the body for changes to selects
$('body').on('change', 'select',
function()
{
alert('I am a body alert');
$(this).data('mgc-previous', $(this).data( 'mgc-current' ) );
$(this).data('mgc-current', $(this).val() );
}
);
})();
選択に基づいて異なるdivを明らかにする必要がありました
これは、jqueryおよびes6構文を使用して行う方法です。
HTML
<select class="reveal">
<option disabled selected value>Select option</option>
<option value="value1" data-target="#target-1" >Option 1</option>
<option value="value2" data-target="#target-2" >Option 2</option>
</select>
<div id="target-1" style="display: none">
option 1
</div>
<div id="target-2" style="display: none">
option 2
</div>
JS
$('select.reveal').each((i, element)=>{
//create reference variable
let $option = $('option:selected', element)
$(element).on('change', event => {
//get the current select element
let selector = event.currentTarget
//hide previously selected target
if(typeof $option.data('target') !== 'undefined'){
$($option.data('target')).hide()
}
//set new target id
$option = $('option:selected', selector)
//show new target
if(typeof $option.data('target') !== 'undefined'){
$($option.data('target')).show()
}
})
})