<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
$(document).ready(function(){
$(".a.c").click(function(){
alert(1);
});
});
</script>
</head>
<body>
<table>
<tr>
<td>
<div class="a b">11</div><br>
<div class="a c">12</div>
</td>
</tr>