简体   繁体   中英

How to select an particular image using javascript or css

How to select an particular image in table or <div> using javascript to get an id of image selected.

I want to save an image which is selected to an database according to username I think the above javascript is used to select the image but it is not working :

 function imgWindow() { var s = window.getSelection() var r = document.createRange(); r.selectNode(document.images[a, b, c]); s.addRange(r); } 
 <div> <img src="images/p1.jpg" id="a" align="center" width="100" height="100" onclick="imgWindow()" /> <img src="images/p2.jpg" id="b" align="center" width="100" height="100" onclick="imgWindow()" /> <img src="images/p3.jpg" id="c" align="center" width="100" height="100" onclick="imgWindow()" /> <img src="images/p2.jpg" alt="b" align="center" width="100" height="100" onclick="imgWindow() "> </div> 

`

You can pass parameter image itself to imgWindow function then you can get id of image by prop()

 function imgWindow(img) { //none juery version console.log(img.id) //jquery version console.log(($(img).prop("id"))) } 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div> <img src="images/p1.jpg" id="a" align="center" width="100" height="100" onclick="imgWindow(this)" /> <img src="images/p2.jpg" id="b" align="center" width="100" height="100" onclick="imgWindow(this)" /> <img src="images/p3.jpg" id="c" align="center" width="100" height="100" onclick="imgWindow(this)" /> <img src="images/p2.jpg" alt="b" align="center" width="100" height="100" onclick="imgWindow(this) "> </div> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM