<script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js">
$(document).ready(function(){
$("#div1").on("click",function(){
$(this).css("background-color","pink");
$("#div2").bind("click",function(){
$(this).css("background-color","pink");
<h4 style="color:green;">This example demonstrates how to achieve the same effect using on() and bind().</h4>
<div id="div1" style="border:1px solid black;">This is some text.
<p>Click to set background color using the <b>on() method</b>.</p>
<div id="div2" style="border:1px solid black;">This is some text.
<p>Click to set background color using the <b>bind() method</b>.</p>