下面是页面中的html
<div style="height: 500px; width: 300px; background-color: Yellow; float: left; position: relative"
id="divMove">
<div style="height: 50px; width: 50px; background-color: Red; position: absolute"
id="divMo">
</div>
</div>
我是想实现divMo子容器一直在divMove中移动,但是不出来,但是上面那个
if ((mouseX > mxLeft && mouseX < mxRight) && (mouseY > mxTop && mouseY < mxBottom)) {
这段话是判断是否是在父容器中的,但是mouseX是大于mxRight,还有mouseY是大于mxBottom的,是不是我那个部分写错了。请各位大仙看看,教教小弟。
你说的是子容器不出来,还是都不出来?
f ((mouseX > mxLeft && mouseX < mxRight) && (mouseY > mxTop && mouseY < mxBottom))
我这个条件一只为false,是不是我的上面的东西写 的有问题啊?
@Waters: 这个条件没有什么问题,可能是你得到的值有问题。你调试一下。