gpt4 book ai didi

jquery - Chrome 自行滚动

转载 作者:行者123 更新时间:2023-12-01 04:22:31 25 4
gpt4 key购买 nike

我在使用 Chrome 时遇到了一个奇怪的问题。我有一些“无处可去的链接”

<a href="#">

更改 iframe 内容,并且 iframe 页面中有更多链接。

所以我的问题是,当我点击页面上和 iframe 内的“无处可去链接”时,Chrome 会自动滚动链接位置。

我可以做些什么来取消这个效果吗?

以下是更改 iframe 内容的链接内容之一:

var isChrome = (navigator.userAgent.indexOf("Chrome") >= 0);
function LoadFrame(url) {
var oFrame = document.getElementById("iframeBoxID");
if (isChrome) {
oFrame.style.visibility = "hidden";
oFrame.onload = function () {
oFrame.style.visibility = "visible";
};
}
oFrame.src = url;
}


$("#TestPage1").click(function () {
LoadFrame("../galleryControlTest/TestPage1.aspx");
changeFocusToIframe(this);
});

我可以在脚本中添加一些东西来取消这种效果吗?在 IE 和 FireFox 中不会发生这种情况。

最佳答案

return false 添加到 onclick 事件中。

$("#TestPage1").click(function () {
LoadFrame("../galleryControlTest/TestPage1.aspx");
changeFocusToIframe(this);
return false;
});

关于jquery - Chrome 自行滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9213740/

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