输入占位符脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入占位符脚本相关的知识,希望对你有一定的参考价值。
Just a quick script to enable default text within a form element to be cleared or restored upon focus/blur of a particular element.Should give you roughly the same functionality as the new html5 webforms "placeholder" attribute.
// Placeholder text jQuery('input[type=text]').bind('focus', function() { if ( $(this).attr('placeholder') && $(this).val() == $(this).attr('placeholder') ) $(this).val(''); }).bind('blur', function() { if ( $(this).attr('placeholder') && !$(this).val() ) $(this).val( $(this).attr('placeholder') ); }).each( function() { if ( !$(this).attr('placeholder') && $(this).val() != "" ) $(this).attr('placeholder', $(this).val() ); });
以上是关于输入占位符脚本的主要内容,如果未能解决你的问题,请参考以下文章