<!DOCTYPE html>
<html>
<head>
<title>ABC</title>
<script src="jquery.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">
function sample() {
var canvas = document.getElementById('cam');
if (canvas.getContext) {
var ctx = canvas.getContext('2d');
ctx.beginPath();
ctx.moveTo(20, 20);
ctx.lineTo(120, 20);
ctx.lineTo(120, 120);
ctx.lineTo(20, 120);
ctx.stroke();
}
}
jQuery(document).ready( function() {
$("#but").click(function(){
sample();
});
});
</script>
</head>
<canvas id="cam"></canvas>
<input id="but" type="button" value="ボタン" />
</body>
</html>
最終更新:2013年05月18日 03:08