busidlist.htm

来自「本公交查询系统基于asp+xml设计」· HTM 代码 · 共 45 行

HTM
45
字号
<style type="text/css">
input{width:65px;}
</style>
<title>请选择车次</title>

<table border="0">
<tr>
<td><input type="button" value="1" onClick="sendTo('1')"></td>
<td><input type="button" value="4" onClick="sendTo('4')"></td>
<td><input type="button" value="5" onClick="sendTo('5')"></td>
</tr>
<tr>
<td><input type="button" value="6" onClick="sendTo('6')"></td>
<td><input type="button" value="7" onClick="sendTo('7')"></td>
<td><input type="button" value="8" onClick="sendTo('8')"></td>
</tr>
<tr>
<td><input type="button" value="9" onClick="sendTo('9')"></td>
<td><input type="button" value="10" onClick="sendTo('10')"></td>
<td><input type="button" value="11" onClick="sendTo('11')"></td>
</tr>
<tr>
<td><input type="button" value="12" onClick="sendTo('12')"></td>
<td><input type="button" value="14" onClick="sendTo('14')"></td>
<td><input type="button" value="15" onClick="sendTo('15')"></td>
</tr>
<tr>
<td><input type="button" value="16" onClick="sendTo('16')"></td>
<td><input type="button" value="201" onClick="sendTo('201')"></td>
<td><input type="button" value="202" onClick="sendTo('202')"></td>
</tr>
<tr>
<td><input type="button" value="301" onClick="sendTo('301')"></td>
<td><input type="button" value="302" onClick="sendTo('302')"></td>
<td></td></tr>
</table>

<script language="JavaScript">
function sendTo(busID){
    window.returnValue = busID;
    window.close();
}
</script>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?