| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1472 人关注过本帖
标题:[求助]javascript属性设置事件无效
取消只看楼主 加入收藏
hwoarangzk
Rank: 4
来 自:冰封王座
等 级:贵宾
威 望:12
帖 子:1894
专家分:0
注 册:2007-7-17
收藏
 问题点数:0 回复次数:1 
[求助]javascript属性设置事件无效
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Cartoon</title>
<script>
var flag=1;
var dx=1,dy=1;
var x=0,y=50;
var v;
function moveRight(){
var r=document.getElementById("cartoon");
x+=dx;
r.style.left=x+"px";
}
function moveLeft(){
var l=document.getElementById("cartoon");
x-=dx;
l.style.left=x+"px";
}
function moveUp(){
var u=document.getElementById("cartoon");
y-=dy;
u.style.top=y+"px";
}
function moveDown(){
var d=document.getElementById("cartoon");
y+=dy;
d.style.top=y+"px";
}
function moveCartoon(){
var o=document.getElementById("cartoon");
var xx=x;
var yy=y;
if(xx==0&&yy==50) flag=1;
if(xx==300&&yy==50) flag=2;
if(xx==300&&yy==200) flag=3;
if(xx==0&&yy==200) flag=4;
switch(flag){
case 1:moveRight();break;
case 2:moveDown();break;
case 3:moveLeft();break;
case 4:moveUp();break;
}
v=setTimeout("moveCartoon()",10);
}
function stopCartoon(){
clearTimeout(v);
}
function look(){
if(event.shiftKey)
alert("Shift Forbidden!");
if(event.ctrlKey)
alert("Ctrl Forbidden!");
if(event.altKey)
alert("Alt Forbidden!");
}
document.onkeydown=look;
document.b1.onclick=moveCartoon;
</script>
</head>
<body>
<input type="button" value="Start" name="b1">
<input type="button" value="Stop" onclick="stopCartoon()"><br>
<div id="cartoon" style="position:absolute;">
Cartoon!!!
</div>
</body>
</html>
红色的那句话为什么不起作用?
搜索更多相关主题的帖子: javascript 属性 设置 
2007-10-26 15:21
hwoarangzk
Rank: 4
来 自:冰封王座
等 级:贵宾
威 望:12
帖 子:1894
专家分:0
注 册:2007-7-17
收藏
得分:0 
嗯,谢谢了

I'm here, as always...
2007-10-26 17:10
快速回复:[求助]javascript属性设置事件无效
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021023 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved