亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM acceptCharset 屬性

定義和用法

acceptCharset 屬性可設置或返回一個逗號分隔的列表,內容是服務器可接受的字符集。

語法

formObject.acceptCharset=charset

實例

下面的例子提示出表單數(shù)據(jù)可能的字符集:

<html>
<head>
<script type="text/javascript">
function showCharset()
  {
  var x=document.getElementById("myForm")
  alert(x.acceptCharset)
  }
</script>
</head>
<body>

<form id="myForm" acceptCharset="ISO-8859-1">
Text: <input type="text" value="Hello World!">
<input type="button" onclick="showCharset()"
value="Show charset">
</form>

</body>
</html>