现代化占位符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了现代化占位符相关的知识,希望对你有一定的参考价值。
if (!Modernizr.input.placeholder){ $('input[type=text]').each( function(){ $(this).attr('value', $(this).attr('placeholder') ) .focus( function(){ var ph = $(this).attr('value'); $(this).attr('value','').blur( function(){ if($(this).attr('value').length < 1 ){ $(this).attr('value', ph); } }) }); } ); }
以上是关于现代化占位符的主要内容,如果未能解决你的问题,请参考以下文章
(源码,具体的细节请查阅相关资料)哈弗曼树的构造以及非递归遍历树