Architect's Log

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

jQueryでAjaxを実装する

ソースコード

<!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>
<div id="contents"></div>
<input id="load" type="button" value="load" />
</body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript">
(function ($) {
	$(document).ready(function () {
		$('#load').click(function () {
			// Ajaxリクエストのレスポンスを表示
			$('#contents').load('HelloWorld.html');
		});
	})
})(jQuery);
</script>
</html>

ボタンクリック前


ボタンクリック後