我是靠谱客的博主 自信大炮,最近开发中收集的这篇文章主要介绍js切换光标示例代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>js切换光标</title>
<script type="text/javascript">
var t;
function a()
{
document.getElementById('input1').focus();
t=setTimeout("b()",3000);
//clearTimeout(t);
//document.getElementById('input2').focus();
//document.getElementById('input1').focus();
}
function b()
{
clearTimeout(t);
document.getElementById('input2').focus();
}
function c()
{
setTimeout("document.getElementById('input3').focus()",500);
}
</script>
</head>
<body>
<input id="testButton" type="button" onclick="a()" value='btn1'>
<input type="text" id="input1">
<input type="text" id="input2">

<input id="testButton1" type="button" onclick="c()" value='btn2'>
<input type="text" id="input3">
</body>
</html>

光标停留一段时间,跳到别一个方本框中去……

最后

以上就是自信大炮为你收集整理的js切换光标示例代码的全部内容,希望文章能够帮你解决js切换光标示例代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(156)

评论列表共有 0 条评论

立即
投稿
返回
顶部