Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!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>文本框自动提示</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>
用户名:<input id="title" name="title" value="">
<script type="text/javascript">
function bindTitleEvent(){
var title = "请输入用户名";
var el = document.getElementById('title');
if (!el) return;
el.value = title;
el.onfocus = function(){
if (el.value == title) el.value = '';
}
el.onblur = function(){
if (el.value == '') el.value = title;
bindTitleEvent();
</script>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx