html下拉框之间的联动------一级分类和二级分类

               

        html/js代码如下:

<html><body><select id="first" onChange="change()">   <option selected="selected">湖北option>   <option>广东option>select><select id="second">   <option>黄冈option>   <option selected="selected">武汉option>select><script>function change(){   var x = document.getElementById("first");   var y = document.getElementById("second");   y.options.length = 0; // 清除second下拉框的所有内容   if(x.selectedIndex == 0)   {  y.options.add(new Option("黄冈", "0"));  y.options.add(new Option("武汉", "1", false, true));  // 默认选中省会城市   }   if(x.selectedIndex == 1)   {  y.options.add(new Option("深圳", "0"));  y.options.add(new Option("广州", "1", false, true));  // 默认选中省会城市  y.options.add(new Option("肇庆", "2"));   }}scriptbody>html>
        


           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

你可能感兴趣的:(html下拉框之间的联动------一级分类和二级分类)