已采纳回答 / Alfen
你之前在里面的函数中的this是指向外层的startmove的,所以直接写this是取不到obj本身的,而外层的this是指向obj本身,把这个this存到一个变量里,作为参数传到里面的函数就可以了
2016-12-18
onmousemove 事件在鼠标移动到 div 元素上时触发。
mouseenter 事件中有在鼠标指针进入 div 元素时触发。
onmouseover 事件在鼠标指针进入 div 元素时触发,在子元素上也会触发
mouseenter 事件中有在鼠标指针进入 div 元素时触发。
onmouseover 事件在鼠标指针进入 div 元素时触发,在子元素上也会触发
2016-12-15
已采纳回答 / 且聴瘋吟
因为如果直接写在等号后面,我们就无法为编写的函数startMove()传递参数(100),也就是这个100是无法传递的,原因是事件处理函数是由系统调用的,系统调用的时候会传入一个事件对象event参数。
2016-12-15
最新回答 / 电饭锅的规划
我是新手,不太明白你说是什么,不过我用你的代码,把其中css单独做一个文件,后引入html,然后就不能显示了。我想style能获取的应该是包括html里的css,也就是html里的css应该都算做行间样式。
2016-12-15
已采纳回答 / 慕粉3904815
style对象只能获取通过HTML标签的style特性定义的样式,对于opacity特性是定义在<style>内嵌标签内的样式,odiv.style.opacity=" "结果为空。自己打开console->watch看看。
2016-12-14
window.onload=function(){
var w=function(id){
return document.getElementById(id)}
w('div').onmouseover=function(){
op(90)}
w('div').onmouseleave=function(){
op(10)}
var b=null
function op(targ){
clearInterval(b);
b=setInterval(function(){
w('div').style.opacity=targ/100||targ;
},100)}}
var w=function(id){
return document.getElementById(id)}
w('div').onmouseover=function(){
op(90)}
w('div').onmouseleave=function(){
op(10)}
var b=null
function op(targ){
clearInterval(b);
b=setInterval(function(){
w('div').style.opacity=targ/100||targ;
},100)}}
2016-12-12
已采纳回答 / 大大的力量
1,var div=document.getElementById('div'); 放在move函数里面2,math改成大写 Math<...code...>
2016-12-12