Link hreflang 属性设置/返回链接文档的语言代码。
用法
以下是语法 -
- 返回hreflang属性值
linkObject.hreflang
- 环境hreflang到语言代码
linkObject.hreflang = langCode
示例
让我们看一个例子Link hreflang属性 -
<!DOCTYPE html>
<html>
<head>
<title>Link hreflang</title>
<link id="extStyle" hreflang='en' rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form>
<fieldset>
<legend>Link-hreflang</legend>
<h3>Spanish</h3>
<input type="button" onclick="changeStyle()" value="In what language is linked document written?">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
var divDisplay = document.getElementById("divDisplay");
var extStyle = document.getElementById("extStyle");
function changeStyle(){
if(extStyle.hreflang === 'en'){
divDisplay.textContent = 'The linked document is written in english';
document.getElementsByTagName('h3')[0].textContent = 'English'
}
}
</script>
</body>
</html>
在上面的例子中‘style.css’包含 -
form {
width:70%;
margin:0 auto;
text-align:center;
}
* {
padding:2px;
margin:5px;
}
input[type="button"] {
border-radius:10px;
}
h3 {
font-size:72px;
color:gold;
}
输出
这将产生以下输出 -
点击前‘In what language is linked document written?’按钮 -
点击后‘In what language is linked document written?’按钮 -
相关用法
- HTML DOM Link href属性用法及代码示例
- HTML DOM Link rel属性用法及代码示例
- HTML DOM Link sizes属性用法及代码示例
- HTML DOM Link disabled属性用法及代码示例
- HTML DOM Link type属性用法及代码示例
- HTML DOM Link用法及代码示例
- HTML DOM Legend用法及代码示例
- HTML DOM Location reload()用法及代码示例
- HTML DOM Legend form属性用法及代码示例
- HTML DOM Location href属性用法及代码示例
- HTML DOM Location pathname属性用法及代码示例
- HTML DOM Location hash属性用法及代码示例
- HTML DOM Location origin属性用法及代码示例
- HTML DOM Location host属性用法及代码示例
- HTML DOM Location replace()用法及代码示例
- HTML DOM Location protocol属性用法及代码示例
- HTML DOM Location port属性用法及代码示例
- HTML DOM Location hostname属性用法及代码示例
- HTML DOM Label htmlFor属性用法及代码示例
- HTML DOM Location search属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Link hreflang Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。