Javascript 参考手册

HTML DOM 对象

Style borderLeft 属性

Style 对象

定义和用法

borderLeft 属性以速记形式设置或返回三个独立的左边框属性。

通过该属性,您可以设置/返回:

  • border-left-width

  • border-left-style

  • border-left-color

语法

设置 borderLeft 属性:

Object.style.borderLeft="width style color"

返回 borderLeft 属性:

Object.style.borderLeft

提示:borderLeft 属性没有默认值。

参数描述
width设置左边框的宽度。
style设置左边框的样式。
color设置左边框的颜色。

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 borderLeft 属性。

实例

实例

更改左边框的宽度、样式和颜色:

<html>

<head>

<style type="text/css">

#ex1

{

border: thin dotted #FF0000;

}

</style>

<script>

function displayResult()

{ 

document.getElementById("ex1").style.borderLeft="thick solid #0000FF";

}

</script>

</head>

<body>


<div id="ex1">This is some text.</div>

<br>

<button type="button" onclick="displayResult()">Change
left border</button>


</body>

</html>
尝试一下 »

Style 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号