JQuery Maths - 不是100%确定如何管理我需要的东西

时间:2012-02-02 12:36:11

标签: jquery

想知道是否有人可以帮助我,我知道我想要实现的目标,但却努力让它发挥作用。

if (left_indent == ((imageReelWidth * 2) - ((imageReelWidth * 2) - imageWidth)) {
 alert ("boo");      
}

我知道以上是不对的,我需要的是:

我有两个可用的变量: imageReelWidth的值为800 imageWidth的值为200或

我需要一个警报,当一个名为left_indent的变量达到-600

时触发

希望能更好地解释它

这是负600


抱歉排序了,这只是我糟糕的数学

  

if(left_indent ==(imageReelWidth - (imageReelWidth * 2-imageWidth))){   警报(“嘘”); }

1 个答案:

答案 0 :(得分:2)

所以你想......

if (left_indent == (imageWidth - imageReelWidth)) {
    alert ("boo");      
}