暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. function callGallery(){
  2. $('.PO_gallery_box').each(function(i,el){
  3. $(el).click(function(e){
  4. const src = $(e.target).attr('src');
  5. $('.PO_gallery_display_img').attr('src',src)
  6. });
  7. });
  8. }
  9. function callMain(){
  10. callGallery();
  11. }
  12. callMain();