以下js代码 为什么firefox中不兼容
<scriptlanguage="javascript">vara;vard=0;functionmove(){if(event.srcElement.className...
<script language="javascript">
var a;
var d=0;
function move(){
if(event.srcElement.className=="tuodong"){
//a=document.getElementsByClassName("tuodong");
//a[0].style.backgroundColor="#000";
a=event.srcElement;
document.onmousemove=move_a;
}
}
function move_a(){
if(event.srcElement.className=="tuodong")
if(event.button==1){
// a[0].style.backgroundColor= "#"+parseInt(Math.random()*4095).toString(16);
a.style.backgroundColor= "#"+parseInt(Math.random()*4095).toString(16);
}
}
document.onmousedown=move;
</script>
<body>
<div class="tuodong" style="background-color:#093; width:50px; height:50px; position:absolute; left:10px;" ></div>
</body> 展开
var a;
var d=0;
function move(){
if(event.srcElement.className=="tuodong"){
//a=document.getElementsByClassName("tuodong");
//a[0].style.backgroundColor="#000";
a=event.srcElement;
document.onmousemove=move_a;
}
}
function move_a(){
if(event.srcElement.className=="tuodong")
if(event.button==1){
// a[0].style.backgroundColor= "#"+parseInt(Math.random()*4095).toString(16);
a.style.backgroundColor= "#"+parseInt(Math.random()*4095).toString(16);
}
}
document.onmousedown=move;
</script>
<body>
<div class="tuodong" style="background-color:#093; width:50px; height:50px; position:absolute; left:10px;" ></div>
</body> 展开
展开全部
<body>
<script language="javascript">
var a;
var d=0;
function move(e){ // firefox chrome 事件回调参数为 Event
if(window.attachEvent){
e=window.event; // IE 事件对象
e.target=e.srcElement;
e.target=e.target?e.target:window;
e.currentTarget=e.toElement;
}
alert(e.target.tagName);
}
document.onmousedown=move;
</script>
<div class="tuodong" style="background-color:#093; width:50px; height:50px; position:absolute; left:10px;" ></div>
</body>
更多追问追答
追问
不好意思,本人刚入门,再问一下:
e.target=e.srcElement;
e.target=e.target?e.target:window;
e.currentTarget=e.toElement;
这三句是同样效果的吗?
还有现在学习的书(很多默认兼容ie,至少我现在这本就是)都很少讲到兼容性问题的,我一遇到这些问题就头疼,请问我应该在哪里学习兼容性问题呢
不好意思,本人刚入门,再问一下:
e.target=e.srcElement;
e.target=e.target?e.target:window;
e.currentTarget=e.toElement;
这三句是同样效果的吗?
还有现在学习的书(很多默认兼容ie,至少我现在这本就是)都很少讲到兼容性问题的,我一遇到这些问题就头疼,请问我应该在哪里学习兼容性问题呢
展开全部
js脚本可以参考W3C标准 http://www.w3schools.com/js/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询