输入占位符脚本

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.
  1. // Placeholder text
  2. jQuery('input[type=text]').bind('focus', function() {
  3. if ( $(this).attr('placeholder') && $(this).val() == $(this).attr('placeholder') ) $(this).val('');
  4. }).bind('blur', function() {
  5. if ( $(this).attr('placeholder') && !$(this).val() ) $(this).val( $(this).attr('placeholder') );
  6. }).each( function() {
  7. if ( !$(this).attr('placeholder') && $(this).val() != "" ) $(this).attr('placeholder', $(this).val() );
  8. });

以上是关于输入占位符脚本的主要内容,如果未能解决你的问题,请参考以下文章

布局中的片段占位符

IE 中的占位符

python:脚本占位符

如何错误检查包含带有占位符 %s 的 SQL 查询的函数

仅更改输入占位符 * 颜色

IE浏览器中的占位符文本问题(8-9)