如何通过元素获得左侧位置

时间:2012-05-03 10:43:39

标签: javascript jquery

我需要在表格中获取位置元素。 但是函数position()将我返回到其他数据。

img - name elemnt。 i = 0;

alert('0 ' + $(img + i).attr('style'));

var position = $(img + i).position();
var left = Math.round(position.left);

alert('1 left= ' + left);
alert('1 ' + $(img + i).attr('style'));
$(img + i).attr('style', 'position:absolute;display:block;left:' + left + 'px;top:' + position.top + 'px;');
alert('2 ' + $(img + i).attr('style'));

迹:

  

0位置:绝对;显示:块;左:289px;顶部:0px;

     

1 left = 582

     

1位:绝对;显示:阻止;左:289px;上:0px;

     

2位:绝对;显示:阻止;左:582px;上:159.0833282470703px;

更新 HTML:

    <table cellpadding="0" id="target" cellspacing="0" width="602" height="500" style="float: left;
        margin: 0px; padding: 0px; position: relative; background: url(/content/games/kamikaze2/back.jpg) no-repeat 0 0;">
        <tbody>
            <tr>
                <td valign="top">
                    <img id="stone_0" src="/content/games/kamikaze2/stone0.gif" width="31" height="28"
                        class="c" onclick="go()" >
</td>
</tr>
</tbody>
</table>

1 个答案:

答案 0 :(得分:0)

var position = $(img + i).position();
var left = Math.round($(img + i).css("left"));