1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>Clic</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
jQuery(function($){
$('#outer').on('click', function(e){
var msg = 'Elément cliqué : <b>' + e.target.id + '</b>';
msg += '<br />This : <b>' + this.id + '</b>';
$('#result').html(msg);
});
});
</script>
<style>
#outer{
margin: 25px;
width: 600px;
height: 400px;
background-color: silver;
}
#inner{
width: 300px;
height: 200px;
background-color: gray;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner"></div>
</div>
<div id="result"></div>
</body>
</html> |
Partager