The example in this article describes the method of obtaining the name attribute of a web page image using JS. Share it with everyone for your reference. The details are as follows:
The following JS code can be used to obtain the name attribute of web images
<!DOCTYPE html> <html> <body> <img id="compman" name="compman" src="compman.gif" alt="Computerman" width="107" height="98"> <br> <script> document.write("Image name: "); document.write(document.getElementById('compman').name); </script> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.