我想检查div是否已移动到某一点。这是我的代码无效。
JS:
(function deathCondition() {
if (wordlist.offsetTop >= 500) {
alert('hey');
}
})();
我甚至试图独自一人。
if (wordlist.offsetTop >= 500) {
alert('hey');
}
答案 0 :(得分:0)
不确定wordlist是否包含元素的id或类,但无论如何你需要存储元素的id或类:
var wordlist = document.getElementById('wordlist');
然后找出偏移的元素:
elOffset = wordlist.offsetTop;