<body><div id="one"></div>
<div id="two"></div>
<div id="three"></div>
<img id="sa" src="288180.jpg">
<input type="button" value="click me" onClick="start()">
<script type="text/javascript" language="javascript">
function $(ele){return document.getElementById(ele);}var obj = $("sa");
obj.style.position = "absolute";
//obj.style.left = document.body.clientWidth - obj.offsetWidth;
//obj.style.top = document.body.offsetHeight;
obj.style.right = "0px";
obj.style.bottom = "-180px";
function start(){
var right = obj.style.right;
var bottom = obj.style.bottom;
if(bottom != 0){
var num = Number(obj.style.bottom);
num = num + 5;
obj.style.bottom = num;   ************************
bottom = obj.style.bottom;

}
//setTimeout("start()",30);
}
window.onload = start;
</script></body>
打*号的那句(obj.style.bottom = num;),报 参数无效错误 ,忙烦大侠们,帮我看看,非常感谢啊,很着急用呢,十分感谢,