0

考虑这是html代码:

        <table>         
        <tr>
            <td><img id="a11" src="photos/empty.png" /></td>
            <td><img id="a12" src="photos/empty.png" /></td>
            <td><img id="a13" src="photos/empty.png" /></td>
        </tr>

        <tr>
            <td><img class="move" id="a21" src="photos/Pawn.png" /></td>
            <td><img class="move" id="a22" src="photos/Pawn.png" /></td>
            <td><img class="move" id="a23" src="photos/Pawn.png" /></td>
        </tr>
    </table>

考虑“empty.png”只是一个空图像

这是jQuery代码:

$(document).ready(function() {

$(".move").click(function (){

    //reset the background color of the first row
    $("#a11, #a12, #a13" ).css("background-color" , "");

    //fetch the src attribute of the clicked element
    var src = $(this).attr("src");

    //fitch the id attribute of the clicked element
    var Id  = $(this).attr("id");
    var Id  = "#"+Id;
    var x = Id[2];
    var y = Id[3];

    ////////////////////////

    newx = x - 1;
    newsy = y;

    //form the new id of the above cell
    newId = "#a" + newx + newsy;

    //make the background of this cell 'red'
    $(newId).css("background-color","red");

    //fire event that when click on this cell move the image to it and remove the image from original cell
    $(newId).click(function(){

        $(Id).attr("src","photos/empty.png");
        $(this).attr("src",src);
        $("#a11, #a12, #a13" ).css("background-color" , "");


    });

});

});

必选:
当点击第二行任意一个单元格时,上面对应的单元格背景变为红色

然后当点击它时,图像移动到它。

问题

单击第一个单元格时会出现问题(第一个 pawn #a21)

然后单击第二个单元格(第二个棋子#a22)

然后单击一个第三个单元格(第三个棋子#a23)

然后单击#a13 或#a12 单元格...下面的相应图像将移动到它

我不想要它

我想删除上一个事件的效果,但只会执行最后一个事件的效果

4

1 回答 1

0

通过比较点击事件中的当前 id 来解决问题。

$(newId).click(function(){
    var currentid = "#"+this.id;
    if(newId == currentid){
        $(Id).attr("src","photos/empty.png");
        $(this).attr("src",src);
        $("#a11, #a12, #a13" ).css("background-color" , "");
    }
});

希望能帮助到你。

于 2013-05-29T15:46:04.850 回答