1
<img id="compman" name="compman" src="/examples/compman.gif" alt="Computerman" width="107" height="98">
2
<br>
3
<script>
4
document.write("图像名称: ");
5
document.write(document.getElementById('compman').name);
6
</script>
<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>