加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 教程 > 正文

JS文本获得焦点清理文本文字的示例代码

发布时间:2023-09-19 15:37:15 所属栏目:教程 来源:
导读:代码如下:

<!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>

<
代码如下:
 
<!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>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
<title>无标题文档</title>
 
<style type="text/css">
 
.clearFieldBlurred{
 
    color:#ccc;
 
    font-style:italic;
 
    font-weight:normal;
 
    width:150px;
 
}
 
.clearFieldActive{
 
    color:#4e4e4e;
 
    font-weight:bold;
 
    width:150px;
 
}
 
</style>
 
<script type="text/javascript">
 
function clearFiled(){
 
    var bbb=document.getElementById("bbb");
 
    if(bbb.value=="bbb"){
 
        bbb.value='';
 
        bbb.className='clearFieldActive';
 
    }
 
}
 
window.document.onmousedown=function(){
 
    var bbb=document.getElementById('bbb');
 
    if(bbb.value==""){
 
    bbb.value='bbb';
 
    bbb.className='clearFieldBlurred';
 
    }
 
}
 
</script>
 
</head>
 
<body>
 
<input type="text" id="aaa"  value="aaa" class="clearFieldBlurred" onfocus="if(this.value=='aaa'){this.value='';this.className='clearFieldActive';}"  onblur="if(this.value==''){this.value='aaa';this.className='clearFieldBlurred';}"/>
 
<br />
 
<input type="text" id="bbb" value="bbb" class="clearFieldBlurred" onclick="clearFiled()"  />
 
</body>
 
</html>
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章