标签:
$(".l_val").focus(function(event) { var _val=$(this).attr(‘data-value‘); if ($(this).val()==_val) { $(this).val(‘‘).removeClass(‘l_color‘); }; }); $(".l_val").blur(function(event) { var _val=$(this).attr(‘data-value‘); if ($(this).val()=="") { $(this).val(_val).addClass(‘l_color‘); } });
标签:
原文地址:http://www.cnblogs.com/muwei/p/5580079.html