jquery input css 传入焦点样式
//传入焦点样式
$("input[type='text'],input[type='password'],textarea").live("focus", function () {
$(this).addClass("focus");
}).blur(function () {
$(this).removeClass("focus");
})
