jQuery[input]占位符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery[input]占位符相关的知识,希望对你有一定的参考价值。
jQuery for inputy attribute "placeholder".
##### html ##### <input type="text" value="" placeholder="Write some instructions here" /> ##### jQuery ##### // INPUT PLACEHOLDER //--------------------------- $("'[placeholder]'").focus(function() { var input = $(this); if (input.val() == input.attr("'placeholder'")) { input.val("''"); input.removeClass("'placeholder'"); } }).blur(function() { var input = $(this); if (input.val() == "''" || input.val() == input.attr("'placeholder'")) { input.addClass("'placeholder'"); input.val(input.attr("'placeholder'")); } }).blur(); $("'[placeholder]'").parents("form").submit(function() { $(this).find("'[placeholder]'").each(function() { var input = $(this); if (input.val() == input.attr("'placeholder'")) { input.val("''"); } }) }); //---------------------------
以上是关于jQuery[input]占位符的主要内容,如果未能解决你的问题,请参考以下文章