changekey事件.htm

来自「这是一些关于JavaScript的学习资料 希望对大家有用」· HTM 代码 · 共 30 行

HTM
30
字号
<html>
<head>
<title>Listing 9.4. Handling the Change Event - 品络科技 pinluo.com</TITLE>
</head>

<body>

<form>
Edit the text and then click outside or press Tab:<br>
<input type="text" value="Change Me!" onChange="change_handler(this)">
哈哈哈!<input 
    type="text" 
    onKeyDown="window.status = 'The key is down.'"      
    onKeyUp="window.status = 'The key is up.'">
</form>

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

function change_handler(text_field) {
    text_field.value = text_field.value.toLowerCase()
}

//-->
</script>

</body>
</html>

⌨️ 快捷键说明

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