找到出现DOM html的最后一个元素

时间:2015-05-06 11:55:23

标签: javascript jquery html focus

我有一个将图像放在桌子上的代码(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;
    } 
}

我希望我能解释清楚。

1 个答案:

答案 0 :(得分:1)

我认为它会起作用,将其添加到想要获取img元素的地方:

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