Current position: home page > Write casually >A string of js codes lists all images on the current page

A string of js codes lists all images on the current page

Author: blueleaf Classification: Write casually Time: January 8, 2021 Browse: 2038 Comments: 2

When browsing some pictures and articles, if you only want to see pictures or save multiple pictures, you can use Blueleaf to share Js code To list all the pictures on the current page, you can directly display the picture URL, or add a picture viewing effect, which is as convenient as looking at an album; Use Google Browser or some fast browsers, open the developer tool, enter the console command console, paste the js code below, and then all the pictures on the current page can be listed.

 Paste code in the browser command console javascript :a=document.body.getElementsByTagName("img"); var b="";for(i=0; i<a.length;i++){b+=a[i].src+"<br />";}; document.write(b); Paste the code below to list pictures and add viewing effects javascript:a=document.body.getElementsByTagName("img"); var b='';for(i=0; i<a.length;i++){b+="<a href="+a[i].src+" data-fancybox=group data-caption="+i+" target=_blank><img border=0 src="+a[i].src+"></a><br>"}; document.write(b); var css link = document.createElement('link'); csslink.rel = "stylesheet"; csslink.href = " https://cdn.staticfile.org/fancybox/3.3.5/ jquery .fancybox.min.css"; document.getElementsByTagName('head')[0].appendChild(csslink); var script = document.createElement('script'); script.src = " https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js "; document.getElementsByTagName('head')[0].appendChild(script); var script = document.createElement('script'); script.src = " https://cdn.staticfile.org/fancybox/3.3.5/jquery.fancybox.min.js "; document.getElementsByTagName('head')[0].appendChild(script);

Disclaimer:

Website: Click Copy to share with friends!

All content resources shared by this website, if not noted, are original by Blueleaf. If you need to reprint, please indicate the source; Please contact us in case of infringement Contact handling Please understand!

Comment List
 blink the eyes kiss Growl happy think poor It's embarrassing Grievance ha-ha hush Right hum Zuo Hum Hum doubt A bad laugh Make money Sadness Be cool Seduce fierce handshake yeah Hee hee Shyness applause greedy Madness Embrace gather and watch Mighty awesome
Submit comments

Clear information
Close Comment
 Dream Home
Dream Home tourist
#1
Over the years, the blue leaves have always been there, but I am ups and downs
2021-01-12 15:18 reply
 blueleaf
blueleaf tourist
@Dreamhouse: Me too.
2021-01-13 10:46 reply
music appreciation
Back to top