1
function createToolTips(ids,text,positions){
    var steps=[];
    for(var i =0; i<ids.length; i++){
        var obj = {element:"#"+ids[i],content:text[i],placement:positions[i]}
        steps.push(obj);
    }
    var tour = new Tour({
        steps: steps,
        autoscroll: true
    });
    tour.init();
    tour.restart();
    tour.start(true);
}

tour 在可滚动内容中不起作用。如何解决这个问题,

4

0 回答 0