3

我阅读了使用 jQuery 滚动到特定元素的问题,在问题中,原始 HTML 代码已经具有段落元素的 ID。但是,就我而言,我动态生成元素(列表元素)并在运行时创建 ID。使用或不使用 jQuery,我将如何滚动到该特定元素?

要提供有关我的问题的更多详细信息:

我正在创建一个 phonegap 项目以获取 iPhone 中的联系人列表并在 div 中显示滚动列表(我使用 iscroll 插件)。我对名字 AE、FJ、KO、PT、UZ 进行分类并将它们分组。如果用户在侧面触摸 FJ(如您在 iPhone 联系人应用程序中找到的那样),则 div 应滚动到属于组 FJ 的第一个联系人。

<div id ="tablediv">
    <div id="scroller"></div>
</div>

<div id="sorter">
    <span id="gr1">A-E</span>
    <span id="gr2">F-J</span>
</div>

Javascript:

var g1 = ['a','b','c','d','e'];  //contact's first name starting with these chars
var g2 = ['f','g','h','i','j'];  //contact's first name starting with these chars
var idg1=null, idg2=null; // first id of the contact which was in g1, g2

//Array is an array of objects
//example: array = [ {'fname':'x','lname':'y','number':'123'},{..},{..}];

function generateTable(array) {
    gpDiv = document.getElementById("scroller");
    pDiv = document.createElement("ul");
    pDiv.id = "thelist";
    for(var i=0;i<array.length;i++) {
        cDiv = document.createElement("li");
        cDiv.id = 'cd'+i; //id created dynamically
        cDiv.textContent = array[i].fname+"\u000a"+array[i].lname;
        var ch0 = array[i].fname[0].toLowerCase();
        if($.inArray(ch0,g1)!=-1 && idg1==null) {
            idg1 = cDiv.id;
            document.getElementById('gr1').addEventListener('click',function(){goToG1(idg1);},false);
        }
        if($.inArray(ch0,g2)!=-1 && idg2==null) {
            idg2 = cDiv.id;
            document.getElementById('gr2').addEventListener('click',function(){goToG2(idg2);},false);
        }  
        pDiv.appendChild(cDiv);
    }
    gpDiv.appendChild(pDiv);
}

function goToG1(id) {
    $('#tablediv').scrollTop($('#'+id).offset().top);
}

function goToG2(id) {
    $('#tablediv').scrollTop($('#'+id).offset().top);
}

上面的代码不起作用,因为我认为由于 id 是在运行时分配的,所以我无法滚动到该特定元素。请帮忙

4

2 回答 2

10

嗯,我需要做的就是这个。

function goToG1(id) {
    document.getElementById(id).scrollIntoView();
}

在我看来,即使它们是在运行时分配的,这些 id 仍然有效。

于 2012-11-16T08:51:51.380 回答
0

您的代码或多或少地工作-但是您正在使用代码:

$("#tablediv").scrollTop(...)

代替

$(document).scrollTop(...)

除此之外它的工作原理 - 见这里:http: //jsbin.com/umatuj/2/edit

于 2012-11-16T08:58:35.220 回答