あなたは2を持っていると仮定し、以下のようなHTML要素を「を選択」:
test.htmlという
<html>
<head>
<script src="connectSelect.js"></script>
</head>
<body onload="connectSelect('first', 'second')">
<select id="first">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
<select id="second">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</body>
</html>
ジャスト「を選択」のidを渡して、本体の負荷にすでに作られた「connectSelect」関数を使用します接続する要素。
ヘッダーにconnectSelect.jsファイルを含めます。私はまた、コードスニペットを挿入した
function connectSelect(id1, id2) {
var select1 = document.getElementById(id1);
var select2 = document.getElementById(id2);
var i, val1, text1, val2, text2, errText;
//to check whether both the select elements are of same length or not
if (select1.length != select2.length) {
alert("connectSelect Function Error: Both the 'Select' elements should have same number of options!");
return;
}
//after assuring both the select elements to be of same length
//to check whether both the select elements have same value and text
for (i = 0; i < select1.length; i++) {
val1 = select1.options[i].value;
text1 = select1.options[i].innerHTML;
val2 = select2.options[i].value;
text2 = select2.options[i].innerHTML;
if (val1 != val2 || text1 != text2) {
errText = "Both the 'Select' elements should have same options with same value and text!";
errText += "\n";
errText += "\n";
errText += "First mismatch: Option " + (i+1);
alert("connectSelect Function Error: " + errText);
return;
}
}
//after assuring both the select elements to be same
select1.addEventListener("change", function(){
var index = this.selectedIndex;
select2.options[index].selected = true;
});
select2.addEventListener("change", function(){
var index = this.selectedIndex;
select1.options[index].selected = true;
});
}
connectSelect.js:以下はそのためのコードです。それを試してみてください。
function connectSelect(id1, id2) {
\t var select1 = document.getElementById(id1);
\t var select2 = document.getElementById(id2);
\t var i, val1, text1, val2, text2, errText;
\t
\t //to check whether both the select elements are of same length or not
\t if (select1.length != select2.length) {
\t \t alert("connectSelect Function Error: Both the 'Select' elements should have same number of options!");
\t \t return;
\t }
\t
\t //after assuring both the select elements to be of same length
\t //to check whether both the select elements have same value and text
\t for (i = 0; i < select1.length; i++) {
\t \t val1 = select1.options[i].value;
\t \t text1 = select1.options[i].innerHTML;
\t \t val2 = select2.options[i].value;
\t \t text2 = select2.options[i].innerHTML;
\t \t
\t \t if (val1 != val2 || text1 != text2) {
\t \t \t errText = "Both the 'Select' elements should have same options with same value and text!";
\t \t \t errText += "\n";
\t \t \t errText += "\n";
\t \t \t errText += "First mismatch: Option " + (i+1);
\t \t \t alert("connectSelect Function Error: " + errText);
\t \t \t return;
\t \t }
\t }
\t
\t //after assuring both the select elements to be same
\t select1.addEventListener("change", function(){
\t \t var index = this.selectedIndex;
\t \t select2.options[index].selected = true;
\t });
\t select2.addEventListener("change", function(){
\t \t var index = this.selectedIndex;
\t \t select1.options[index].selected = true;
\t });
}
<html>
\t <head>
\t \t <script src="test.js"></script>
\t </head>
\t <body onload="connectSelect('first', 'second')">
\t \t <select id="first">
\t \t \t <option value="0">0</option>
\t \t \t <option value="1">1</option>
\t \t \t <option value="2">2</option>
\t \t \t <option value="3">3</option>
\t \t \t <option value="4">4</option>
\t \t </select>
\t \t <select id="second">
\t \t \t <option value="0">0</option>
\t \t \t <option value="1">1</option>
\t \t \t <option value="2">2</option>
\t \t \t <option value="3">3</option>
\t \t \t <option value="4">4</option>
\t \t </select>
\t </body>
</html>
それが助け願っています。
「
これを試すhttps://jsfiddle.net/jkhmvnuj/ –
恐ろしい!それは完璧に働いて、おかげでヒープ、あなたは答えとしてあなたのjsfiddleの例を再投稿する必要がありますので、私はあなたの答えを正しいupvoteすることができます、ありがとう再び。驚くほど簡単に実装することができ、少量のjsコードでした。乾杯。 –