📅  最后修改于: 2022-03-11 15:01:56.858000             🧑  作者: Mango
$('img').click(function () { // on a click
if($(this).attr('id') == '1') { // get the id attribute
$('#div').html('Image with 1 was clicked'); // write the text
} else { // else if
// write something else for the 2
}
}