每天一个JavaScript实例-操作元素定位元素

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>每天一个JavaScript实例-操作元素定位元素</title>
<style>
	div#a{
		width:500px;
	}
	div{
		border:1px solid #000;
		padding:10px;
	}
	#cursor{
		position:absolute;
		background-color:#ff0;
		width:20px;
		height:20px;
		left:50px;
		top:300px;
	}
</style>
<script>
function positionObject(obj){
	var rect  = obj.getBoundingClientRect();
	return [rect.left,rect.top];
}
window.onload = function(){
	var tst = document.documentElement.getBoundingClientRect();
	alert(tst.top);
	var cont = 'A';
	var cursor = document.getElementById("cursor");
	while(cont){
		cont = prompt("where do you want to move the cursor block?","A");
		if(cont){
			cont = cont.toLowerCase();
			if(cont == "a"||cont=="b"||cont=="c"){
				var elem = document.getElementById(cont);
				var pos = positionObject(elem);
				console.log(pos);
				cursor.setAttribute("style","top:"+pos[1]+"px;"+"left:"+pos[0]+"px");
			}
		}

	}
}
</script>
</head>

<body>

<div id = "a">
<p>A</p>
<div id ="b">
	<p>B</p>
	<div id="c">
		<p>C</p>
	</div>
</div>
</div>
<div id="cursor">

</div>
</body>
</html>

时间: 2024-10-19 16:42:40

每天一个JavaScript实例-操作元素定位元素的相关文章

每天一个JavaScript实例-从一个div元素删除一个段落

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-从一个div元素删除一个段落</title> <style> p{ padding:20px; margin:10px 0; width:

每天一个JavaScript实例-从js脚本中访问object元素中的SVG

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-从js脚本中访问object元素中的SVG</title> <style> </style> </head> &l

每天一个JavaScript实例-铺货鼠标点击位置并将元素移动到该位置

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-铺货鼠标点击位置并将元素移动到该位置</title> <style> #info{ width:100px; height:100px;

每天一个JavaScript实例-获取元素当前高度

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-获取元素当前高度</title> <style> #date{width:90%;height:25%;padding:10px;back

每天一个JavaScript实例-点击图片显示大图添加鼠标操作

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-点击图片显示大图添加鼠标操作</title> <style> img{padding:5px;width:100px;height:aut

每天一个JavaScript实例-html5拖拽

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-html5拖拽</title> <style> #drop{ width:300px; height:200px; background-

每天一个JavaScript实例-使用带有定时器的函数闭包

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-使用带有定时器的函数闭包</title> <style> #redbox{ position:absolute; left:100px;

每天一个JavaScript实例-判断图片是否加载完成

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>每天一个JavaScript实例-判断图片是否加载完成</title> <script> window.onload= function(){ //clearTimeout(clock); alert("加载完成"); } v

每天一个JavaScript实例-检測表单数据

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-检測表单数据</title> <style> [role="alert"]{ background-color: #f