不知何故,我无法使 var “转向”改变。
--------------'#a3' 是一个 div-----------------
对于所有的代码去这里。
这是一些 js/jquery:
var turn = 1;
if (turn === 1) {
//----------------------------red
if (da3 === false) {
$('#a3').click(function () {
$(this).css("background-color", "red");
turn = 0;
});
}
if (turn === 0) {
//----------------------------blue
if (da3 === false) {
$('#a3').click(function () {
$(this).css("background-color", "blue");
turn = 1;
});
}
这是我使用的一些CSS:
div {
display: inline-block;
background-color:grey;
width : 150px;
height: 150px;
}