Code <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(function(){
$("#in1").focus(function(){
$(this).css("background","red");
});
});
</script>
<style>
#in1{
width:40%;
color:white;
}
</style>
</head>
<body>
<input id="in1" accesskey="C" placeholder="Nhấn chuột vào tôi, nhấn phím Tab, hoặc nhấn tổ hợp phím 'Alt+C' => Tôi đỏ">
</body>
</html>