欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

失去焦点和获得焦点

程序员文章站 2024-02-10 22:37:35
...
var serch=document.getElementById("serch");
//失去焦点
serch.onblur=function(){
    if(this.placeholder=='') {
        this.placeholder='搜索您想要的商品';
    } 
}
//获得焦点
serch.onfocus=function(){
    if(this.placeholder=='搜索您想要的商品'){ 
        this.placeholder='';
    }
}