修改模板:network_space.htm
查找: 代码: <th>出生地</th>
<td>
……
</td>
</tr>
<tr>
<th>居住地</th>
<td>
……
</td>
</tr>
替换为:
代码:
<tr>
<th>出生地</th>
<td>
<script type="text/javascript" src="source/script_city2.js"></script>
<SCRIPT LANGUAGE="JavaScript">
var $ = function(ID){ return document.getElementById(ID); };
window.onload = function() {
attachSelect(0, [$("a"), $("b"), $("c")], aMatrix);
attachSelect(0, [$("d"), $("e"), $("f")], aMatrix);
};
</SCRIPT>
<select id="a" name="birthprovince">--</select>
<select id="b" name="birthcity">--</select>
<select id="c" name="birthsubcity">--</select>
</td>
</tr>
<tr>
<th>居住地</th>
<td>
<select id="d" name="resideprovince">--</select>
<select id="e" name="residecity">--</select>
<select id="f" name="subcity">--</select>
</td>
</tr> |