Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 html 页面并插入了一个文本框。我想从 javascript 函数中知道页面中的文本框目的地?示例文本框的顶部是 100 像素。谢谢你。
试试这个:
window.onload = function() { console.log(document.getElementById("id1").offsetTop); };
id1您需要进行三角测量的文本框的 id 在哪里。
id1