gpt4 book ai didi

javascript - 找到最后出现过DOM html的元素

转载 作者:行者123 更新时间:2023-11-28 01:31:37 26 4
gpt4 key购买 nike

我有一个将图像放在表格 (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");

关于javascript - 找到最后出现过DOM html的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30075985/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com