Доброго времени суток.
Не подскажете возможно ли:
А) запомнить на каком месте хтмл-ки остановился webbrouser
Б) отлистать автоматически вебстраничку до запомненного места
И если вдруг это возможно то где глянуть примерчики.
Спасибо.
// getPageScroll() by quirksmode.com
// use getPageScroll()[0] for horizontal scrolled amount
// use getPageScroll()[1] for vertical scrolled amount
function getPageScroll() {
var xScroll, yScroll;
if (self.pageYOffset) {
yScroll = self.pageYOffset;
xScroll = self.pageXOffset;
} else if (document.documentElement && document.documentElement.scrollTop) {
yScroll = document.documentElement.scrollTop;
xScroll = document.documentElement.scrollLeft;
} else if (document.body) {// all other Explorers
yScroll = document.body.scrollTop;
xScroll = document.body.scrollLeft;
}
return new Array(xScroll,yScroll)
}
// Adapted from getPageSize() by quirksmode.com
function getPageHeight() {
var windowHeight
if (self.innerHeight) { // all except Explorer
windowHeight = self.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight) {
windowHeight = document.documentElement.clientHeight;
} else if (document.body) { // other Explorers
windowHeight = document.body.clientHeight;
}
return windowHeight
}
нет, не правильно. Нужно в структуре DOM (Document Object Model) обратиться к свойствам объекта, которые тебя интересуют. В твоем случае: WB.document.documentElement.scrollTop, а вообще, если ты работаешь с DOM, хотя бы из уважения к самому себе, покуритьtunduk писал(а):правильно ли я понял
a = wb1.Document.documentElement.scrollTop
a = wb1.Document.Body.scrollTop
а="здравствуй мир!"
wb1.Document.Body.ScrollTop = 600
a = wb1.Document.Body.scrollTop
wb1.Document.Body.ScrollTop = 600
Сейчас этот форум просматривают: AhrefsBot, SemrushBot, Yandex-бот и гости: 68