欢迎访问服务器技术网-www.fuwuqijishu.com

Anchor charset 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 11次浏览 0个评论 扫描二维码
文章目录[隐藏]

Anchor charset 属性

Anchor对象


定义和用法

charset 可设置或返回链接的 charset 属性值。

charset 属性指定了被链接资源的字符集。

语法

设置 charset 属性:

anchorObject.charset=”charset

返回 charset 属性:

anchorObject.charset

描述
charset 指定被链接资源的字符集


浏览器支持

所有主要浏览器都支持 charset 属性


实例

实例

返回链接的 charset 属性值:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<a id="runoob" charset="ISO-8859-1" href="//www.runoob.com/">菜鸟教程</a><br>
<script>
document.write("返回链接的charset: ");
document.write(document.getElementById(‘runoob’).charset);
document.write("
<br><br>");
</script>
<a id="google" href="//www.google.com/">Google</a><br>
<script>
document.getElementById(‘google’).charset="utf-8";
document.write("设置链接的charset: ");
document.write(document.getElementById(‘google’).charset);
</script>

</body>
</html>


Anchor对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2301.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900