<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>jQuery Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>
</head>
<body>
<h1>jQueryサンプル</h1>
<p id="about">jQueryとは?</p>
<form>
<input type="button" value="書き替え" onClick="changeText()">
</form>
<script type="text/javascript">
function changeText(){
$("#about").html("<b>軽量/高速</b>なライブラリです");
}
</script>
</body>
</html>