blur.htm

来自「适用于一些有脚本基础的人学习javascript脚本语言」· HTM 代码 · 共 34 行

HTM
34
字号
<html>
<head>
<title>Listing 9.4. Handling the Blur Event</title>
</head>

<body>

<form name="wu">
Click inside the box, and then click outside or press Tab:<br>
<input type="text" name="ww" onBlur="blur_handler(this)">
s1:<input type="text2">
s2:<input type="text2" name="ppp">

</form>

<script language="JavaScript" type="text/javascript">
<!--

function blur_handler(text_field) {
    if (text_field.value == "") {
        alert("Please enter a value!");
		document.wu.ww.value="hehe";
        document.wu.ppp.value="sdd";
	document.wu.ppp.focus();
    }
}

//-->
</script>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?