JSでドロップダウンリストの連動を実現します.
1217 ワード
需要:JSでドロップダウンリストを実現して、「地区」の選択に該当する地区を選ぶ時、自動的に「国家」のリストに該当する国が現れます.
:
:
select.js//
var data = [
[" "," "," "],
[" "," "," "],
[" "," "," "]
]
function change(){
var area = document.getElementById("area");
var countrys = document.getElementById("country");
var index = area.value;
var selects = data[index-1]; // value
var oldOptions = countrys.children; // children, ( )
var length = oldOptions.length; //!! , length :
// length, length , 。
for(var i=0;i