已采纳回答 / 酷鱼木木
因为left:"-=50px"设置的左移距离为50,而不是无限制移动,当设置left:"-=200px"的时候,就会左移200px,已经移出页面外了,所以并不是界限的问题。
2016-05-09
background-color这个属性蛮另类的,我直接写成了backgroundcolor,另,通过设置div的color倒是可以回避<font></font>这个被废弃的标签
2016-05-09
最新回答 / Thomaszzc
第一种是js语法,第二种是jquery语法 可以用document.getElementById('ele').style.backgroundColor='#ccc',或者$('#ele').css('background-color','#ccc')
2016-05-09
已采纳回答 / 心安Y
<!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>挑战题</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></...
2016-05-08