js小效果之聊天界面檢測(cè)輸入狀態(tài)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>檢測(cè)輸入狀態(tài)</title>
</head>
<body>
<p style="display:none">正在輸入</p>
<input type="text">
</body>
<script>
var timer=null;
function $(el){ return document.querySelector(el) }
$("input").onkeyup=function(e){
if(e.keyCode==8){
$("p").style.display="none";
}
else{
clearInterval(timer);
$("p").style.display="block";
setInterval(hide,5000);
}
}
function hide(){
$("p").style.display="none";
}
</script>
</html>
作者:Vam的金豆之路
主要領(lǐng)域:前端開發(fā)
我的微信:maomin9761
微信公眾號(hào):前端歷劫之路