一連のドロップダウン ボックスで 1 回だけ数字を使用できるこの小さなスクリプトを作成しようとしていました.. [1] [3] [2] [2] [3] [1] [2] [1] [3 ] すべて問題ありませんが [2] [2] [1] [1] [1] [3] ..
半分はできたと思います。
$("#left").focus(function () {
// Store the current value on focus, before it changes
previous = this.value;
}).change(function() {
// Do soomething with the previous value after the change
var num1 = $("#left option:selected").text();
if ( $("#middle option:selected").text() == num1){
$("#middle option:selected").text(previous)
}
if ( $("#right option:selected").text() == num1){
$("#right option:selected").text(previous)
}
});
完全なものへのリンクは次のとおりです。http://jsfiddle.net/U3WSz/
少しは機能しますが、ドロップダウンオプションが変化し始めていることに気付きました。十分にいじってみると、私が見ていることに気付くでしょう。
また、多くのコードを繰り返す方法にも気付きました。もっといい書き方があれば教えてください。