input输入数字跳转到对应页面 JS
可用于做分页页面跳转
代码如下
可用于做分页页面跳转
代码如下
<script language="javascript">function jump(){top.location='HTMLPage'+document.getElementById("num").value+".htm";}</script><input type="text" id="num" /><input type="button" onclick="jump()" />