var currentLeft = $(this).css('left');

if((currentLeft%2)== 0){ thisLeft = currentLeft; }


仅在单击的项目的left属性可被0整除的情况下,我才想设置变量thisLeft = currentLeft。

问题是css('left')选择了'400px',但是我只对400部分感兴趣。

我怎样才能做到这一点?

最佳答案

var currentLeft = $(this).css('left');
    currentLeft = currentLeft.replace('px','');
if((currentLeft%2)== 0){ thisLeft = currentLeft; }

07-24 16:46