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.
我创建了一个函数,它通过点击函数相对定位元素。
在函数运行并定位元素后,我希望它在窗口调整大小/滚动时相应更改。
如何做到这一点?
$('#mybtn').click(function(){ myfunction }
我不知道如何搜索这个,我什至无法在这个主题上解释它,所以如果在某个地方有答案,请指出我那里。
您可以滚动到视图中的元素。假设 myElement 是要定位的 DOM 元素:
$('#mybtn').click(function(){ myFunction2DoPosition(); myElement.scrollIntoView(true); }