1

別の .js ファイルを含めようとしているので、作成したクラスを取得できますが、機能しません。理由を教えてもらえますか?

playercharacter.js

function PlayerCharacter() {
this.x = 0; 
this.y = 0;

this.dx = 5;
this.dy = 5;
}


PlayerCharacter.prototype.sayHello = function()
{
 alert ('hello');
};

index.html

<html>
<head>
<script src="js/playercharacter.js" type="text/javascript" ></script>
</head>
<body>
 <script type="text/javascript" >
var player = new PlayerCharacter();
player.sayHello();
</script>
</body>
</html>
4

3 に答える 3

0

<script>本文のコードをタグで囲む必要があります。

于 2013-05-14T00:43:39.733 に答える