Clearing the textbox values onclick and displaying onblur

前端 未结 3 1370
生来不讨喜
生来不讨喜 2021-02-15 11:33

Is there a way to clear the default textbox value onclick on textbox and display onblur of multiple textboxes on form page?

3条回答
  •  孤街浪徒
    2021-02-15 11:57

    function Clear1(str)
    {    
       document.getElementById(str).value= "";
    }
    
    function Clear2(str2)
    {    
    var aa1=document.getElementById(str2);
    	if (aa1.value==""){  
        document.getElementById(str2).style.backgroundColor = "#ffcccc"; 
    	}else{
        document.getElementById(str2).style.backgroundColor = "#ffffff";   
      }
    }
    
    
    
    
    
    
    
    
        

    https://jsfiddle.net/warunamanjula/qy0hvmyq/1/

提交回复
热议问题