jQuery содержание () найти высоту ссылки ссылки в iFrame - PullRequest
0 голосов
/ 04 октября 2010

У меня есть iFrame, который при загрузке растягивает всю его длину без полос прокрутки.Через 1 секунду я хочу прокрутить до якоря в iFrame.

Я думаю, мне нужно получить его высоту?Как я могу это сделать?

HTML:

<iframe id="help-frame" src="help.php" scrolling="no"><\/iframe>

JS:

$("#help-frame").load(function() {
    document.getElementById("help-frame").style.height = 
    document.getElementById("help-frame").contentWindow.document.body.offsetHeight + 'px';
    setTimeout(iScroll, 1000);
});
function iScroll() {
    var anchorH = $("#help-frame").contents().find("a.ordering").height();
    alert(anchorH);
    // smooth scroll to #ordering
}

HTML help.php:

<!-- added a class as well -->
<a name="ordering" class="ordering"></a>
<h2>Ordering</h2>
... long content ...

1 Ответ

1 голос
/ 04 октября 2010

Вам не нужно повторно запрашивать help-frame в обработчике событий.this будет ссылаться на объект вызова.

$('#help-frame').load(function(){
    var self = $(this);
    setTimeout(function() {
       var pos = self.contents().find('a.ordering').offset();
       self.animate({scrollTop:  pos.top}, 1000);
    }, 1000);
});
...