当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM hreflang属性
The hreflang property sets or returns the language code of the linked resource.
hreflang属性可设置或返回所链资源的语言代码。
anchorObject.hreflang=languagecode |
The following example returns the language code of the linked resource:
下面举例中将返回所链资源的语言代码:
<html> <body> <p><a id="myAnchor" hreflang="us-en" href="http://www.w3schools.com">W3Schools.com</a></p> <script type="text/javascript"> x=document.getElementById("myAnchor"); document.write(x.hreflang); </script> </body> </html> |
Get the language code of a linked resource
得到所链资源的语言代码