<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>5</title>
<link rel="stylesheet" type="text/css" href="css/stage.css" />
<script src="jslibs/jquery-1.9.1.min.js"></script>
<script>
$(document).click(function(event) {
var x = event.offsetX,
y = event.offsetY;
$('#player').animate({
top: y,
left: x
}, 1000);
$('#change').html('hello');
});
</script>
</head>
<body>
<div id="header">
<h1 id="change">Mario is standing still...</h1>
</div>
<div id="stage">
<img id="player" src="images/mario.gif" alt="Mario" />
</div>
</body>
</html>
それが私のコードですが、それをクリックすると、永続的に hello に変更されるだけで、1000 ミリ秒だけ hello に変更されます。私はjqueryAPI、Google、どこでも見てきました。私はそれを起こさせることができません。誰にもアイデアはありますか?
ありがとうございました!