Home > Web Front-end > JS Tutorial > JavaScript method to get the first image id in a web page_javascript skills

JavaScript method to get the first image id in a web page_javascript skills

WBOY
Release: 2016-05-16 16:05:45
Original
1335 people have browsed it

The example in this article describes the method of using JavaScript to obtain the first image ID in a web page. Share it with everyone for your reference. The details are as follows:

The following code gets all the images in the web page through document.images, and then gets the id attribute of the first image

<!DOCTYPE html>
<html>
<body>
<img id="klematis lilac" border="0" src="klematis.jpg" 
width="148" height="112">
<img id="klematis pink" border="0" src="klematis2.jpg" 
width="149" height="118">
<p>Id of first image:
<script>
document.write(document.images[0].id);
</script></p>
</body>
</html>
Copy after login

The running results are as follows:

Id of first image:klematis lilac
Copy after login

I hope this article will be helpful to everyone’s JavaScript programming design.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template