最新回答 / Nero总是学不会
测试了一下可以用,看看是不是JS<script src="move.js"></script>引用路径有误,另外需要加Flag来保证只有每个值都达到target才停止动画,不然透明度到1宽度还没到400就不动了
2017-05-02
最新回答 / 慕移动9181930
strlen($data)时所对应的字符不存在,为什么会不存在呢?还有这句时strlen($data)是什么意思呢?老师好像没说?在系统验证时,是==之间不能有空格。
2017-05-02
已采纳回答 / 赤水三千
我猜是this的的作用域问题,onmouseover内的function函数应该把this传参,因为第二个function中的this不再指向op本身。相关的this 问题我也不太明白,正学习应改为op.onmouseover = function() {var that = this //将this传参yd(that, "height", 300, function() {yd(that,"width",400); });}不知道对不对,共勉。
2017-04-30
哈哈 我就知道用js给 后端发请求 修改页面上的数据 js是有存在的意义的 结构 表现 和行为 这三个应该是前端的三个组成部分吧 结构应该是html 表现应该是css 行为感觉就是js啦。。。。 。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。实在扯不下去了 我先撤了
2017-04-30
关于offsetLeft与style.left的区别:http://www.cnblogs.com/woshilee/articles/1951457.html
2017-04-28
var target=0;
if(speed>0){
target=0;
}else if(speed<0){
target=-250;
}
if(oDiv.offsetLeft==target){
clearInterval(timer);
}else{
oDiv.style.left=oDiv.offsetLeft+speed+"px";
}
if(speed>0){
target=0;
}else if(speed<0){
target=-250;
}
if(oDiv.offsetLeft==target){
clearInterval(timer);
}else{
oDiv.style.left=oDiv.offsetLeft+speed+"px";
}
2017-04-28
挖了一个坑,一起跳吧:
if(myys.offsetLeft>a){
b=-9;
}
else if((a-myys.offsetLeft)%9!=0){
b=(a-myys.offsetLeft)%9;
}
else{
b=9;
}
if(myys.offsetLeft>a){
b=-9;
}
else if((a-myys.offsetLeft)%9!=0){
b=(a-myys.offsetLeft)%9;
}
else{
b=9;
}
2017-04-25