我正在尝试使用 jQuery Mobile 打开一个对话框:
<a href="terms.html" data-rel="dialog" data-anchor="cancellationterms">
    Cancellation terms
</a>
我也尝试附加#cancellationterms到href属性。但随后什么也没有发生。
如何让它滚动到对话框上的指定锚点?
我正在尝试使用 jQuery Mobile 打开一个对话框:
<a href="terms.html" data-rel="dialog" data-anchor="cancellationterms">
    Cancellation terms
</a>
我也尝试附加#cancellationterms到href属性。但随后什么也没有发生。
如何让它滚动到对话框上的指定锚点?
最后这成功了:
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);
    }
};