gpt4 book ai didi

javascript - StackOverflow 评论的 html anchor 例如 "http://SO/...#comment41994753_26699358"

转载 作者:行者123 更新时间:2023-11-30 10:02:46 24 4
gpt4 key购买 nike

我发现 SO 的评论可以锚定并且我很难理解该实现。以下链接是an example锚定评论:

http://SO/questions/26696064/slug/26699358?noredirect=1#comment41994753_26699358

根据我对html的理解,#之后的comment41994753_26699358一定存在于html页面中,但是我没有找到id或者name 在里面。当我阅读源代码时,我只找到相对的源代码:

<div id="comments-26699358" class="comments ">
<table>
<tbody data-remaining-comments-count="0" data-canpost="true" data-cansee="false" data-comments-unavailable="false" data-addlink-disabled="false">
<tr id="comment-41994753" class="comment ">

这个片段只告诉我两个相对的和分开的 ids id="comment-41994753"id="comments-26699358",最后的 anchor comment41994753_26699358 是从它们生成的?或者这与所使用的框架有关?

最佳答案

这不是浏览器行为,橙色背景色及其滚动到 View 中是通过 JavaScript 发生的。

代码在此文件中:http://cdn.sstatic.net/Js/full.en.js
非缩小版:http://dev.stackoverflow.com/content/js/full.js

重要的函数是onHashChange_HighlightDestinationdoHighlight:

onHashChange_HighlightDestination:
它解析散列参数,e。 G。 #comment49509148_30726127 然后调用高亮方法。

// answers have the form 'lies-like/58534#58534'; comments are 'lies-like/58534#comment60949_58534'
var match = decodeURI(url).match(/#(\d+|comment(\d+)_(\d+))/i);
if (!match) return; // moderator viewing a flagged question, e.g. 'lies-like#question'

if (match[2])
highlightComment(match[2], match[3]);
else
highlightAnswer(match[1]);

doHighlight:此方法最终突出显示它(橙色背景)并使用函数 scrollIntoView 将评论/答案滚动到 View 中.

var doHighlight = function (jEle) {
var originalColor = backgroundColor;
jEle
.css({ backgroundColor: highlightColor })
.animate({ backgroundColor: originalColor }, 2000, 'linear', function () { $(this).css('background-color', ''); });

if (jEle.is('.comment'))
jEle[0].scrollIntoView(true);
};

关于javascript - StackOverflow 评论的 html anchor 例如 "http://SO/...#comment41994753_26699358",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30726101/

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