characterSet属性用于在解析时返回文档的字符编码。它是已用于文档渲染的字符集,用户也可以覆盖编码。如果在内存中创建文档,则characterSet属性将返回null。
用法:
document.characterSet
例:
<!DOCTYPE html>
<html>
<head>
<title>DOM characterSet Property</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM characterSet Property</h2>
<p>For returning the characterSet of the current URL,
click on the button:</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<!-- Script to get the characterSet -->
<script>
function myFunction() {
var x = document.characterSet;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
输出:
单击按钮后:
支持的浏览器:
- 谷歌浏览器45.0
- Internet Explorer 9.0
- Firefox 44.0
- Opera 34.0
- Safari 9.0
相关用法
- HTML DOM value用法及代码示例
- HTML Bdo dir用法及代码示例
- HTML DOM specified用法及代码示例
- HTML li value用法及代码示例
- HTML DOM URL用法及代码示例
- HTML DOM dir用法及代码示例
- HTML Map name用法及代码示例
- HTML DOM id用法及代码示例
- HTML DOM name用法及代码示例
- HTML DOM nextElementSibling用法及代码示例
- HTML DOM isContentEditable用法及代码示例
- HTML DOM title用法及代码示例
- HTML DOM implementation用法及代码示例
- HTML DOM ownerDocument用法及代码示例
- HTML DOM offsetWidth用法及代码示例
注:本文由纯净天空筛选整理自Sabya_Samadder大神的英文原创作品 HTML | DOM characterSet Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。