StackOverflow评论的html锚点,例如" http://SO/...#comment41994753_26699358"

时间:2015-06-09 07:54:33

标签: javascript html html5 stackexchange

我发现SO的评论可能是固定的,我很难理解这个工具。以下链接an example锚定评论:

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

根据我对html的理解,html页面中必须存在comment41994753_26699358之后的#,但我未在其中找到idname。当我阅读源代码时,我只找到相关的源代码:

<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 ">

此代码段只告诉我两个相对且分开的ID id="comment-41994753"id="comments-26699358",最终的锚comment41994753_26699358是从它们生成的?或者这与SO使用的框架有关?

2 个答案:

答案 0 :(得分:2)

它没有浏览器行为,橙色背景颜色及其滚动到视图中的是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将注释/答案滚动到视图中。

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);
};

答案 1 :(得分:2)

答案在于javascript代码中的onHashChange_HighlightDestination函数,该函数是从init方法调用的,该函数会在每次请求时触发。

正如您在developer edition of the javascript code中看到的,它会尝试从请求哈希中提取帖子ID和评论ID:

var match = decodeURI(url).match(/#(\d+|comment(\d+)_(\d+))/i);

从那里调用highlightCommentscrollIntoView和CSS突出显示。