Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

【jQuery】要素が見えるようにスクロールする

ソースコード

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<input id="bar" type="button" value="fooまでスクロール" />
<div style="height:300px;border:1px solid #000000"></div>
<div id="foo" style="height: 30px; border: 1px solid #000000">foo</div>
</body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js"></script>
<script type="text/javascript">
(function ($) {
	$('#bar').click(function () {
		var fooOffset = $('#foo').offset();	// fooの表示位置を取得
		$(document).scrollTop(fooOffset.top);	// fooの位置までスクロール
	});
})(jQuery);
</script>
</html>

全景


ボタンを押す前


ボタンを押した後


fooが見えるまでスクロールしています。