<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>ByTagName练习</title><style> div{width:50px; height:50px; background-color:green; position:absolute; left:20px; top:30px; }body{margin:0;}</style><script>window.onload = function(){ var aDiv = document.getElementsByTagName('div'); for(var i=0; i<10; i++){ document.body.innerHTML += '<div>' + i + '</div>' ; aDiv[i].style.left = 10 + i*60 + 'px'; }; for(var i=0; i<aDiv.length; i++){ aDiv[i].style.left = i*60 + 'px'; };};</script></head>
添加回答
举报
0/150
提交
取消