检测某些元素的位置

时间:2014-11-12 22:52:24

标签: javascript jquery

假设我连续有三个按钮,其中一个是致命的'按钮。有没有办法点击按钮1,它会告诉我它的2个元素远离了致命的'按钮? 或者点击按钮2,它会告诉我它距离3号位置的距离太远,这是致命的'按钮。

我不确定我是否已经很好地解释了这一点,所以我将链接一个设置示例。

我希望做一些类似于扫雷探测地雷的方法。

HTML

<table>
    <tr>
        <td><button id="1">Button 1</button></td>
        <td><button id="2">Button 2</button></td>
        <td><button id="3">Button 3</button></td>
    </tr>
    <tr>
        <td><button id="4">Button 4</button></td>
        <td><button id="deadly">Button 5</button></td>
        <td><button id="6">Button 6</button></td>
    </tr>  
    <tr>
        <td><button id="7">Button 7</button></td>
        <td><button id="8">Button 8</button></td>
        <td><button id="9">Button 9</button></td>
    </tr> 
</table>  

我目前正在使用JQuery,因此任何使用它的解决方案仍然适用于我。

FIDDLE

3 个答案:

答案 0 :(得分:1)

最简单的方法是,您可以使用cellIndex所在的<td>元素的<button>属性:

$('button').click(function(e){
    e.preventDefault();
    var self = $(this),
        cellIndex = self.closest('td').prop('cellIndex'),
        lastCell = self.closest('tr').find('td:last-child').prop('cellIndex'),
        delta = Math.abs(lastCell - cellIndex);
    console.log( delta + (delta === 1 ? ' cell' : ' cells') + ' away from deadly cell');
});

JS Fiddle demo

参考文献:

答案 1 :(得分:0)

使用jQuery:

$("button").click(function() {
    var myrow = $(this).parent().index();
    var mycol = $(this).index();
    var deadly = $("#deadly");
    var deadly_row = deadly.parent().index();
    var deadly_col = deadly.index();
    var x_dist = Math.abs(mycol - deadly_col);
    var y_dist = Math.abs(myrow - deadly_row);
    // Do what you want with x_dist and y_dist
});

答案 2 :(得分:0)

此代码随机确定致命方块,然后检查onclick。首先检查坐标是否匹配,如果不匹配则确定距离。在这里,我只是通过函数调用传递坐标。如果你愿意,你可以动态地增加你的表格。这种方法的另一个好处是,您不仅可以查看源代码并找出哪个按钮可以保持&#34;致命&#34;

<script>
    var DeadlyX = Math.floor((Math.random() * 3) + 1);
    var DeadlyY = Math.floor((Math.random() * 3) + 1);


    function amIDeadly(x, y) {

        var r = "checking";
        if ((x == DeadlyX) && (y == DeadlyY)) {
            r = "found the deadly!";
        }
        else {
            var dx = x - DeadlyX;
            var dy = y - DeadlyY;
            var hyp = dx*dx + dy*dy;
            hyp = Math.sqrt(hyp);
            hyp = Math.floor(hyp);
            r = "you are " + hyp + " from the deadly";
        }
        document.getElementById("infobox").value = r;

    }
</script>
<table>
    <tr>
        <td>
            <button id="1" onclick="amIDeadly(1,1);">Button 1</button>
        </td>
        <td>
            <button id="2" onclick="amIDeadly(1,2);">Button 2</button>
        </td>
        <td>
            <button id="3" onclick="amIDeadly(1,3);">Button 3</button>
        </td>
    </tr>
    <tr>
        <td>
            <button id="4" onclick="amIDeadly(2,1);">Button 4</button>
        </td>
        <td>
            <button id="5" onclick="amIDeadly(2,2);">Button 5</button>
        </td>
        <td>
            <button id="6" onclick="amIDeadly(2,3);">Button 6</button>
        </td>
    </tr>
    <tr>
        <td>
            <button id="7" onclick="amIDeadly(3,1);">Button 7</button>
        </td>
        <td>
            <button id="8" onclick="amIDeadly(3,2);">Button 8</button>
        </td>
        <td>
            <button id="9" onclick="amIDeadly(3,3);">Button 9</button>
        </td>
    </tr>
</table>
<br/>
<br/>
<input id="infobox" />