0

我有表 id=target。我需要在表格中移动元素。我需要使用相对于父对象的对象。

function StartVisual() {

    $("#man").attr('src', '/content/games/kamikaze2/go_right0.gif');
    $("#man").attr("style", "position:absolute;bottom:10px;left:70px;display:block;visibility:visible;");


    var left = $("#man").position().left;//man moved element
    alert(left);
}

在 Opera 中我得到 70,在 Mozilla 中得到 300。在 Opera 中,我得到绝对 Mozilla 的相对重要性

帮助我,我需要获取或绝对或相对,但在所有浏览器中都一样

更新: 适用于其他浏览器以及歌剧。

答案:我应该用位置偏移代替

4

2 回答 2

0

Try using a CSS Reset option. IMO This one by Eric Meyer is one of the most commonly used css resetting stylesheets. Resetting your css will give you a certain bit of control in preventing such idiosyncrasies.

于 2012-05-11T09:51:10.187 回答
0

我应该使用而不是位置被偏移

于 2012-05-12T06:30:27.577 回答