省市关联的下拉

来源:互联网 发布:明星逛过的淘宝店 编辑:程序博客网 时间:2024/05/20 11:35

引用的js   : area.js

<tr>
  <td>
<label>
省:
</label>
<select  id="province" name="province" class="px" onchange="getCity('');"  style="width: 175px;" >
<option select="selected" value="">
选择省
</option>
    </select>
  </td>
  
<td>
<label>
市:
</label>
<select class="px"  id="city" name="city" runat="server"   style="width: 175px;">
 <option select="selected" value=""> 
            选择城市
 </option>
</select>
</td>
</tr>

0 0