使用单个函数根据原始值清除焦点上的所有文本字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用单个函数根据原始值清除焦点上的所有文本字段相关的知识,希望对你有一定的参考价值。
Clear all text fields on focus based on original value with single function. The code checks for a 'title' attribute on each input with class 'text' and compares this to the current value of the field.
var $originalValue = ''; $('.text').focus(function () { $(this).addClass('active'); if ($(this).val() == $(this).attr('title')) { $originalValue = $(this).val(); $(this).val(''); } }); $('.text').blur(function () { $(this).removeClass('active'); if ($(this).val() == '') { $(this).val($originalValue); } });
以上是关于使用单个函数根据原始值清除焦点上的所有文本字段的主要内容,如果未能解决你的问题,请参考以下文章
选择焦点上的所有文本输入内容在 Microsoft Edge 中不起作用