0

我正在尝试使用 jQuery Mobile 打开一个对话框:

<a href="terms.html" data-rel="dialog" data-anchor="cancellationterms">
    Cancellation terms
</a>

我也尝试附加#cancellationtermshref属性。但随后什么也没有发生。

如何让它滚动到对话框上的指定锚点?

4

1 回答 1

0

最后这成功了:

var anchor = '';
$('a[data-anchor]').live('click', function() {
    anchor = $(this).data('anchor');
});

$('div[data-role="dialog"]').live('pageshow', function(e, ui) {
    $('.ui-dialog-contain > .ui-content', this).scrollTo(jumpto);
});

$.fn.scrollTo = function(id) {
    var obj = $('#' + id);
    if (obj.length > 0) {
        $(this).scrollTop(obj.position().top);
    }
};
于 2012-11-24T14:45:57.753 回答