功能描述:当用户在一个文本输入框中输入某个数字(只能输入数字!),然后点击文本框后的"go"按钮,页面跳转到输入的数字页面.
问题:
需要一段实现该功能的javascript代码.
That's all..
功能描述:当用户在一个文本输入框中输入某个数字(只能输入数字!),然后点击文本框后的"go"按钮,页面跳转到输入的数字页面.
问题:
需要一段实现该功能的javascript代码.
That's all..
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>阿宝工作室 - 信息提示</title>
<style type="text/css">
table { font-size: 12px; }
</style>
<SCRIPT language=javascript>
var secs=3;//3秒
for(i=1;i<=secs;i++)
{ window.setTimeout("update(" + i + ")", i * 1000);}
function update(num)
{
if(num == secs)
{ self.location.href=' http://www.abaonet.com/';; }
else
{ }
}
</SCRIPT>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<br>
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#8080A6">
<tr>
<td height="25"><div align="center"><strong><font color="#FFFFFF">阿宝工作室 - 提示信息!</font></strong></div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="80"><div align="center"> <br>
<b>您访问的页面可能已被更改,正在转向主页......</b> <br>
<br>
<a href= http://www.abaonet.com/>如果您的浏览器没有自动跳转,请点击这里</a> <br>
<br>
</div></td>
</tr>
</table>
</body>
</html>
如上面的代码,你另存为 .html 的格式,就可以看出效果了。
<script language="javascript"> function ck() {window.location.href=document.getElementById("textid").value+".htm"
} </script> <form id="form1" name="form1" method="post" action=""> <input type="text" name="textfield" id="textid" /> <input type="button" name="botton" value="提交" onclick="return ck()" /> </form>