gpt4 book ai didi

Javascript - 在弹出窗口中滚动到底部

转载 作者:行者123 更新时间:2023-12-03 11:50:55 24 4
gpt4 key购买 nike

<script type="text/javascript">
// Popup window code
function newPopup(url) {
popupWindow = window.open(url,'popUpWindow','height=500, width=800, left=10, top=10, resizable=yes, scrollbars=yes, toolbar=yes, menubar=no, location=no, directories=no, status=yes')
}
</script>


<a href="JavaScript:newPopup('http://www.google.ca');">CLICK HERE</a></a> to go to google.

当用户点击网页上的CLICK HERE时,将会出现一个弹出窗口,并将您引导至http://www.google.ca网页。我的问题是如何让弹出窗口在点击 CLICK HERE 时自动滚动到页面底部?

我找到了这段代码:window.scrollBy(0,50),但它将网站本身滚动到底部。它不会滚动弹出窗口。

最佳答案

尝试使用这样的onload事件

function newPopup(url) {
popupWindow = window.open(url,'popUpWindow','height=500, width=800, left=10, top=10, resizable=yes, scrollbars=yes, toolbar=yes, menubar=no, location=no, directories=no, status=yes');
popupWindow.onload = function () {
popupWindow.scrollTo(0, popupWindow.document.body.scrollHeight);
};
}

关于Javascript - 在弹出窗口中滚动到底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25840372/

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