省份: |
|
城市: |
|
区县: |
|
県、市、地区、および郡のデータ構造: [名前、親 ID、現在の ID]
onChange="changelocation2(document.editForm.smalllocation.options[document.editForm.smalllocation.selectedIndex].value)"
selectedIndex に基づいて次のレベルに関連付けられたメニューの親クラス ID を取得します。
コードをコピーします
コードは次のとおりです
function changelocation(locationid)
{
document.editForm.smalllocation.length = 0;
// document.editForm.dlmc0.length = 0; >document.getElementById("dlmc0 ").length=0;
//document.editForm.dlmc0.options[0] = 新しいオプション('==選択してください==',''); .getElementById("dlmc0") .options[0] = new Option('==選択してください==','');
//alert(locationid);
var i;
document.editForm.smalllocation.options[0] = 新しいオプション('==選択してください==',''); i )
{
if (subcat[i][1] == locationid)
{
document.editForm.smalllocation.options[document.editForm.smalllocation.length] = new Option(subcat [i][0], subcat[i][2]);
}
}
}