【发布时间】:2011-07-03 22:53:14
【问题描述】:
此 scrollBy 函数在 Internet Explorer 中有效,但被 Firefox 和 Opera 忽略。谁能帮忙解决这个问题?
function scrollLeft(s){
document.frames['my_iframe'].scrollBy(-s,0);
window.frames['my_iframe'].scrollBy(-s,0);
}
function scrollRight(s){
document.frames['my_iframe'].scrollBy(s,0);
window.frames['my_iframe'].scrollBy(s,0);
}
这是一个适用于 Internet Explorer 浏览器,但不适用于 Firefox 和 Opera 的示例:http://igproject.ru/iframe-scrolling/index.htm
【问题讨论】:
标签: javascript internet-explorer firefox scroll opera