我已经阅读了很多关于如何使用java脚本blah blah blah和Jquery进行滚动的内容,但没有任何帮助我。有没有其他方式来执行此操作?
<iframe id="something" src="something" >
以及
$("something").scrollto(0,20);
更多
答案 0 :(得分:0)
现在jquery将.attr设置为scrolling =“yes”并重新加载iframe!
$(document).ready(function () {
$("#button3").click(function () {
$("#iframe_id").attr("scrolling", "yes");
$('#iframe_id').attr("src", $('#iframe_id').attr("src"));
});
});