标签:
if (navigator.userAgent.indexOf("MSIE")>0) {
$("input[placeholder]").each(function(){
$(this).val((($(this).val()=="")?$(this).attr("placeholder"):"")).blur(function(){
if ($(this).val()=="") $(this).val($(this).attr("placeholder"));
}).focus(function(){
if ($(this).val()==$(this).attr("placeholder")) $(this).val("");
});
});}
标签:
原文地址:http://www.cnblogs.com/dabingguai/p/4757893.html