小码哥的IT人生

HTML DOM left 属性

JavaScript基础 2022-06-08 14:49:50小码哥的IT人生shichen

HTML DOM left 属性

定义和用法

left 属性设置定位元素左外边距边界与其包含块左边界之间的偏移。

语法:

Object.style.left=auto|%|length

可能的值

描述
auto 默认。通过浏览器来计算左侧的位置。
% 设置元素的左边到最近一个具有定位设置父元素的左边缘的百分比位置。
length 使用 px、cm 等单位设置元素的左边到最近一个具有定位设置父元素的左边缘的位置。可使用负值。

提示和注释

注释:如果 "position" 属性的值为 "static",那么设置 "left" 属性不会产生任何效果。

实例

下面的例子对按钮的左边进行设置:

<html>
<head>
<style type="text/css">
input
{
position:absolute;
}
</style>
<script type="text/javascript">
function setLeftEdge()
{
document.getElementById("b1").style.left="100px";
}
</script>
</head>
<body>
<input type="button" id="b1" onclick="setLeftEdge()"
value="Set left edge to 100 px" />
</body>
</html>

TIY

完整实例【left - 对元素的左边进行设置】:

<html>
<head>
<style type="text/css">
input
{
position:absolute;
}
</style>
<script type="text/javascript">
function setLeftEdge()
{
document.getElementById("b1").style.left="100px";
}
</script>
</head>
<body>
<input type="button" id="b1" onclick="setLeftEdge()" value="Set left edge to 100 px" />
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024