📌  相关文章
📜  如何使用文本onclick在javascript代码示例中显示图像

📅  最后修改于: 2022-03-11 15:01:56.858000             🧑  作者: Mango

代码示例1
$('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
  }
}