这篇文章主要为大家详细介绍了javascript自动跳转文本功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
贴一段自动跳转文本的代码实现:
实现代码:
<html>
<head>
<title>文本跳转</title>
<style type=text/css>
body{
MARGIN-TOP: 10px;
FONT-SIZE: 10pt;
MARGIN-LEFT: 10px;
MARGIN-RIGHT: 0px;
FONT-FAMILY: "微软雅黑"
}
</style>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
</head>
<body>
<script type="text/javascript">
function InBox1() {
if(document.code.Box1.value.length == 4) {
document.code.Box2.focus();
}
}
function InBox2() {
if(document.code.Box2.value.length == 4) {
document.code.Box3.focus();
}
}
function InBox3() {
if(document.code.Box3.value.length == 4) {
document.code.Box4.focus();
}
}
</script>
<formname="code" action="" method="post">输入:
<input maxLength="4" size="4" name="Box1" onkeyup="return InBox1()">-
<input maxLength="4" size="4" name="Box2" onKeyUp="return InBox2()">-
<input maxLength="4" size="4" name="Box3" onKeyUp="return InBox3()">-
<input maxLength="4" size="4" name="Box4">
</form>
</body>
</html>以上就是JavaScript自动跳转文本功能的实现代码分享的详细内容,更多请关注php中文网其它相关文章!
java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号