找到最后出现的元素 DOM html

Find the last element that has appeared DOM html

我有一个将图像放在 table(html) 上的代码,我想关注刚刚出现的图像。 我知道我必须使用 $(this) 但我不知道如何使用,这是我的代码

function positioning(year, mon) {
    $('#' + year + ' .' + mon).prepend('<img class="black_point" src="./images/circle.png"/>');//that adds the image
    var table = document.getElementById("table");
    var images = table.getElementsByTagName("img");
    //here I need the current image I had just add to send to that function
    function connect(images) {
        var tabBcr = table.getBoundingClientRect();
        var imgBcr = image.getBoundingClientRect();
        x = imgBcr.left + (imgBcr.width / 2) - tabBcr.left;
        y = imgBcr.top + (imgBcr.height / 2) - tabBcr.top;
    } 
}

希望我解释得很好。

我认为它会起作用,将其添加到您想要获取该 img 元素的位置:

var imgelem=$('#' + year + ' .' + mon).find("img:first");