我是jQuery新手。
当我单击复选框时,我需要在第一列中显示特定行的图像。
我编写了单击功能,但无法正常工作。
在下面提供我的代码:


http://jsfiddle.net/5parbfeu/

$("#checkIDGrid").click(function() {
  alert("I am here");

  var img = $('<img />', {
    id: 'Myid',
    src: 'https://thumbs.dreamstime.com/z/pixel-perfect-web-development-flat-icons-set-website-programming-process-webpage-coding-user-interface-creating-45297890.jpg',
    alt: 'MyAlt'
  });
  img.appendTo($('<tr>'));
});

最佳答案

您始终可以在代码中使用onclick='checkIDGrid()'。它一定会做的。将click替换为function checkIDGrid()。您可以从那里去。

<input onclick = 'checkIDGrid()' type='checkbox' checked=true class=''>

09-25 16:21