JavaScript 使用jQuery设置或清除加载,聚焦和模糊的输入值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 使用jQuery设置或清除加载,聚焦和模糊的输入值相关的知识,希望对你有一定的参考价值。

$("body input").each(function(){
  if ($(this).val() == '') {
    $(this).val($(this).attr('title'));
    $(this).css('color','#ddd');
  } else if ($(this).val() == $(this).attr('title')) {
    $(this).css('color','#ddd');
  } else {
    $(this).css('color','#000');
  }
});

  // Set the value to the title attribute if blank or clear the value on focus if set to the title attribute

$("input").focus(function() {
  if ($(this).val() == $(this).attr('title')) {
    $(this).val('');
    $(this).css("color","#000");
  }
}).blur(function() {
  if ($(this).val() == '') {
    $(this).val($(this).attr('title'));
    $(this).css("color","#ddd");
  } else if ($(this).val() == $(this).attr('title')) {
    $(this).css("color","#ddd");
  }

});

以上是关于JavaScript 使用jQuery设置或清除加载,聚焦和模糊的输入值的主要内容,如果未能解决你的问题,请参考以下文章

使用jQuery设置或清除加载聚焦和模糊时的输入值

JS或jQuery,清除网页历史记录

如何使用 jQuery 或 JavaScript 设置底边距

jQuery easyUI combotree清除选择

设置cookie不能使用javascript或jquery

jQuery:停止动画加尺寸方法