ページに製品の詳細を表示する iframe を生成するシャドーボックスを使用しています。詳細ページはかなり長くなる可能性があるため、クライアントはページを下にスクロールする「詳細」ボタンが必要です (明らかに、iframe の右側のスクロールバーでは十分ではありません)。
iframe をスクロールするために試したコードは次のとおりです。
$(document).ready(function()
{
$(".moreButton img").click(function() {
scrollbottom();
});
});
function scrollbottom() {
var x = 250; // this number is a temporary placeholder
var t = 500;
$("iframe").animate({ scrollTop: x }, t);
}
iframe の代わりに body を使用してみましたが、役に立ちませんでした。何か案は?ありがとう!