HTML DOM name 属性
JavaScript基础 2022-06-08 16:52:01小码哥的IT人生shichen
HTML DOM name 属性
定义和用法
name属性设置或返回要素
语法
linkObject.name=name
实例
以下示例输出链接元素的名称:
<html>
<head>
<link rel="stylesheet" type="text/css" name="stylesheet"
id="style1" href="try_dom_link.css" />
<script type="text/javascript">
function alertName()
{
alert(document.getElementById("style1").name);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="alertName()"
value="Alert name attribute" />
</form>
</body>
</html>
TIY
完整实例【Get the name attribute of a <link> element】:
<html>
<head>
<link rel="stylesheet" type="text/css" id="style1" name="style1" href="/example/hdom/try_dom_link.css" />
<script type="text/javascript">
function alertName()
{
alert(document.getElementById("style1").name);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="alertName()" value="Alert name attribute" />
</form>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html