想知道是否有人可以帮助我,我知道我想要实现的目标,但却努力让它发挥作用。
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))){ 警报(“嘘”); }
答案 0 :(得分:2)
所以你想......
if (left_indent == (imageWidth - imageReelWidth)) {
alert ("boo");
}