jqueryの中でのonclickにパラメータを渡す方法次のコードは、index.htmlをで呼び出している
<script src="js/jquery/jquery-1.8.2.min.js"></script>
<script src="js/px.js" type="text/javascript" ></script>
<script type="text/javascript">
var newGame = new px1("black");
new px1Generator(newGame);
</script>
以下のコードは、px.jsである
私は100または900を送りたいvar px1 = function (color) {
if (color == "white") {
this.x = "100";
} else if (color == "black") {
this.x = "900";
}};
var px1Generator= function (px1obj) {
for (i = 0; i < 10; i++) {
$("#mainGame").append("<div class='pawn white'></div>");
}
//for 10 object upon add onClickEvent
$(".pawn.white").on("click", function (event, px1obj) {
alert(px1obj.x)
});
};
onclick関数、それを行う方法? ユーザーがdivをクリックしたときのエラーの合意
あなたは 'this.x'を試してみましたか? – Rajesh
は、はい、私はそれをしようとしたが事実ではない、this.xは、例えば、$(この).hasClass(「質屋」)のために、DIVオブジェクトへのポイントです。 "真" – user3600935