摘要: 法一:加入以下jQuery代码var txt=[]; var textbox=$('input:text'); textbox.each(function(){ txt.push($(this).val()); }); textbox.focus(function(){ $(this).val(""); }); textbox.blur(function(){ if($(this).val()== ""){ var recover=txt[textbox.index($(this))]; $(this).val(recover); }}) 阅读全文
posted @ 2012-01-31 16:04 Jennie Ji 阅读(5364) 评论(0) 推荐(1) 编辑