HTML DOM charset 方法
JavaScript基础 2022-06-08 16:51:29小码哥的IT人生shichen
HTML DOM charset 方法
定义和用法
charset属性设置或返回目标URL的字符编码。
语法
linkObject.charset=character-encoding
实例
以下示例设置目标URL的字符编码:
<html>
<head>
<link rel="stylesheet" type="text/css" id="style1"
href="try_dom_link.css" />
</head>
<body>
<script type="text/javascript">
x=document.getElementById("style1");
x.charset="ISO-8859-1";
document.write("Charset=" + x.charset);
</script>
</body>
</html>
TIY
完整实例【Set the character encoding of a <link> element】:
<html>
<head>
<link rel="stylesheet" type="text/css" id="style1" href="/example/hdom/try_dom_link.css" />
</head>
<body>
<script type="text/javascript">
x=document.getElementById("style1");
x.charset="ISO-8859-1";
document.write("Charset=" + x.charset);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html