我无法使此代码工作,刷新 iframe 时 iframe 应自动向下滚动到底部。
代码:
<html>
<!--
Created using jsbin.com
Source can be edited via http://jsbin.com/ujuci5/2/edit
-->
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
</head>
<body>
<p>iframe:</p>
<iframe src="http://jsbin.com/aloko5" id="frame" frameborder="0" width="200px" height="300px"></iframe>
<script>
$(window).load(function ()
{
var $contents = $('#frame').contents();
$contents.scrollTop($contents.height());
});
</script>
</body>
</html>
cn 有人帮我解决这个问题,我有点卡住了