欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM charset 方法

定義和用法

The charset property sets or returns the character encoding of the target URL.

語法

linkObject.charset=character-encoding

實例

The following example sets the character encoding of the target 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>