前端小菜鸟呀
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="../js/jquery-2.1.4.js" ></script> </head> <body> <input type="text" id="a"/> <script type="text/javascript"> $(function(){ $("#a").focus(function(){ $(this).css("background-color","bisque") }) }); </script> </body></html>