Jscrollpane 和内部锚链接

发布于 2024-12-02 03:06:17 字数 583 浏览 0 评论 0原文

我正在使用 Jscrollpane,一切都很好,除了当我尝试将它与内部锚点一起使用时。 它应该像官方页面上的示例一样工作。

但在我的例子中,它确实破坏了我的网站。整个内容都往上飘,我自己也想不通。

这是我的页面: http://kunden.kunstrasen.at/ htmltriest/index.php?site=dieanreise&user_lang=de 如果单击内部锚点: http://kunden .kunstrasen.at/htmltriest/index.php?site=dieanreise&user_lang=de#westautobahn

有人知道这里发生了什么吗? 感谢您的帮助。

I am using Jscrollpane and everything works great, except when I try to use it with an internal anchor.
It should work like the example on the official page.

But in my example it really destroys my site. The whole content is floating upwards and I can't figure it out myself.

Here is my page: http://kunden.kunstrasen.at/htmltriest/index.php?site=dieanreise&user_lang=de
and if the inner anchor is clicked: http://kunden.kunstrasen.at/htmltriest/index.php?site=dieanreise&user_lang=de#westautobahn

Anybody a clou whats going on here?
Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情深缘浅 2024-12-09 03:06:17

jspane 不适用于旧式锚点
例如

<a name="anchor"></a>

,您必须

<a id="anchor"></a>

额外编写必须

hijackInternalLinks: true;

在 jScrollPane 设置对象中启用的内容。

hijackInternalLinks 还捕获来自滚动窗格外部的链接,如果您只需要内部链接,您可以添加此代码,就像 hijackInternalLinks 一样,它绑定 a 元素上的单击功能,并使用目标调用scrollToElement:

            \$(document).ready(function() {
            panes = \$(".scroll");
            //hijackInternalLinks: true;
            panes.jScrollPane({
            });
            panes.each(function(i,obj){
                var pane = \$(obj);
                var api = pane.data('jsp');
                var links = pane.find("a");
                links.bind('click', function() {
                    var uriParts = this.href.split('#');
                    if (uriParts.length == 2) {
                        var target = '#' + uriParts[1];
                        try{
                            api.scrollToElement(target, true);
                        }catch(e){
                            alert(e);
                        }
                        return false;
                    }
                });
            });
        });

但请注意,您始终必须使用标签上的 id 属性。
如果您使用的是tinymce,您可以使用此函数修复代码

function myCustomCleanup(type, value) {
    switch (type) {
            case "get_from_editor_dom":
                    var as = value.getElementsByTagName("a");
                    for(var i=0; i< as.length;i++){
                        if (as[i].hasAttribute('name')){
                            var name = as[i].getAttribute('name');
                            as[i].setAttribute('id',name);
                        }
                    }
                    break;
    }

    return value;

}

jspane does not work with old style anchors
e.g.

<a name="anchor"></a>

instead you have to write

<a id="anchor"></a>

additionaly you have to enable

hijackInternalLinks: true;

in jScrollPane settings Object.

The hijackInternalLinks also captures links from outside the scrollpane, if you only need internal links you can add this code, like hijackInternalLinks it binds the click funktion on the a elements and calls the scrollToElement with the target:

            \$(document).ready(function() {
            panes = \$(".scroll");
            //hijackInternalLinks: true;
            panes.jScrollPane({
            });
            panes.each(function(i,obj){
                var pane = \$(obj);
                var api = pane.data('jsp');
                var links = pane.find("a");
                links.bind('click', function() {
                    var uriParts = this.href.split('#');
                    if (uriParts.length == 2) {
                        var target = '#' + uriParts[1];
                        try{
                            api.scrollToElement(target, true);
                        }catch(e){
                            alert(e);
                        }
                        return false;
                    }
                });
            });
        });

but note you will always have to use the id attribute on a tags.
If you are using tinymce you can repair the code with this function

function myCustomCleanup(type, value) {
    switch (type) {
            case "get_from_editor_dom":
                    var as = value.getElementsByTagName("a");
                    for(var i=0; i< as.length;i++){
                        if (as[i].hasAttribute('name')){
                            var name = as[i].getAttribute('name');
                            as[i].setAttribute('id',name);
                        }
                    }
                    break;
    }

    return value;

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文