<!-- 对于IE 10 以下版本placeholder的兼容性调整 --> <!--[if lt IE 10]> <script> $(function(){ $("input[type!=‘password‘],textarea").bind({ "focus":function(){ var placeholderVal = $(this).attr("placeholder"); var realVal = $(this).val(); if($.trim(realVal)==placeholderVal){ $(this).val(""); } }, "blur":function(){ var placeholderVal = $(this).attr("placeholder"); var realVal = $(this).val(); if($.trim(realVal)==""){ $(this).val(placeholderVal); } } }); $("input[type!=‘password‘],textarea").each(function(i,n){ $(this).val($(this).attr("placeholder")); }); $("input[type=‘password‘]").bind({ "focus":function(){ var placeholderVal = $(this).attr("placeholder"); var realVal = $(this).val(); if($.trim(realVal)==placeholderVal){ var copy_this = $(this).clone(true,true); $(copy_this).attr("type","password"); $(copy_this).insertAfter($(this)); $(this).remove(); $(copy_this).val(""); $(copy_this).focus(); } }, "blur":function(){ var placeholderVal = $(this).attr("placeholder"); var realVal = $(this).val(); if($.trim(realVal)==""){ var copy_this = $(this).clone(true,true); $(copy_this).attr("type","text"); $(copy_this).insertAfter($(this)); $(this).remove(); $(copy_this).val(placeholderVal); } } }); $("input[type=‘password‘]").each(function(i,n){ var placeHolderVal = $(this).attr("placeholder"); var copy_this = $(this).clone(true,true); $(copy_this).attr("type","text"); $(copy_this).insertAfter($(this)); $(this).remove(); $(copy_this).val(placeHolderVal); }); }); </script> <![endif]-->
时间: 2024-11-05 20:38:36