ios jquery css('left')无法读取属性解决的方法

<pre>

$(this).position().left

因为display:none状态下是读取不了

$(this).offset().left

</pre>