其他分享
首页 > 其他分享> > JQuery input聚焦清空值,失焦赋值

JQuery input聚焦清空值,失焦赋值

作者:互联网

 

$("input[type*=text]").each(function(){
  var oldValue=$(this).val();
  $(this).focus(function(){
    if($(this).val()==oldValue){
      $(this).val('');
    }
  })
  .blur(function(){
    if($(this).val()==""){
      $(this).val(oldValue)
    }else{
      oldValue = $(this).val();
    }
  })
});

 

标签:JQuery,function,val,text,oldValue,失焦,input
来源: https://www.cnblogs.com/xuanjiange/p/16441475.html