<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <style type="text/css">
    .hl{ background:red }
    </style>
    <script type="text/javascript">
        $(function () {
            $("body *").click(function () {//*表示body中的任意控件
                $(this).addClass("hl").siblings().removeClass("hl");
            });
        });
    </script>
</head>
<body>
<input type="button"/>
<input type="text" />
<div>sdfs</div>
<p>sdfs</p>
</body>
</html>