JavaScript 参考手册
Image name 属性
返回图片的名称
源代码:
点击运行 »
<img id="compman" name="compman" src="/examples/compman.gif" alt="Computerman" width="107" height="98"> <br> <script> document.write("图像名称: "); document.write(document.getElementById('compman').name); </script>
运行结果:
点击运行 »