Internet Explorer 11将border转换为currentColor

时间:2016-02-25 11:16:01

标签: html css internet-explorer-11 inline-styles

我有简单的HTML。它底部的脚本显示了输入文本框中的样式属性值。

正如您所看到的,输入控件的样式具有以下属性:“border-top:medium none; border-right:medium none; border-bottom:medium none; border-left:medium none”。但是,如果您在IE 11中打开此html文件,脚本将显示以下内容:“border:currentColor”。不知道为什么?请分享你的想法。我想从HTML中提醒原始属性。

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">

</HEAD>
<BODY>
<form>
<input  style='border-top: medium none; border-right: medium none; border-bottom: medium none; border-left: medium none' readOnly size="1" value="Right" name="inputid" id="inputid"/>
<script language="JavaScript">
alert(document.getElementById("inputid").getAttribute("style"));
</script>
</BODY>
</HTML>

0 个答案:

没有答案