HTML DOM name 属性
JavaScript基础 2022-06-08 15:57:41小码哥的IT人生shichen
HTML DOM name 属性
定义和用法
name 属性可设置或返回图像的名称。
如果一个 <img> 有一个 name 属性,就可以把相应的 Image 对象作为 Document 对象的命名属性来访问。
语法
imageObject.name=name
实例
下面的例子可返回图像的名称:
<html>
<body>
<img id="compman" name="compman"
src="compman.gif" alt="Computerman" width="107" height="98" />
<br />
<script type="text/javascript">
document.write("Image name: ");
document.write(document.getElementById('compman').name
);
</script>
</body>
</html>
TIY
完整实例【取得图像的名称】:
<html>
<body>
<img id="compman" name="compman" src="/i/eg_compman.gif" alt="Computerman" />
<br />
<script type="text/javascript">
document.write("Image name: ");
document.write(document.getElementById('compman').name);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html