欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

div失去焦点事件(简述js中获取焦点事件)

程序员文章站 2023-11-27 16:38:04
例 1.1 onblur和onfocus马克-to-win:onblur失去焦点和onfocus得到焦点事件。

例 1.1 onblur和onfocus
马克-to-win:onblur失去焦点和onfocus得到焦点事件。

<!doctype html public “-//w3c//dtd html 4.0 transitional//en”>
<html>
<head>
<meta http-equiv=”content-type” content=”text/html; charset=utf-8″/>
<script language=”javascript”>
<!–
function check(a)
{
var username = a.value;
if (username == “”)
{
/*string.fontcolor() (method)
encapsulates the string within an <font color=”…”> tag context.*/
document.getelementbyid(“error”).innerhtml = “用户名不能为空!”.fontcolor(“red”);
}
}
function rese()
{
document.getelementbyid(“error”).innerhtml = “”;
}
//–>
</script>
</head>
<body onload=”document.getelementbyid(‘u’).focus()”>