// 選點 $(".e-up-img").click(function (e) { that.xx = e.originalEvent.x || e.originalEvent.layerX || 0;//屏幕x坐標 that.yy = e.originalEvent.y || e.originalEvent.layerY || 0;//屏幕y坐標 var img_w = $(this).width(); var img_h = $(this).height(); var img_left = $(this).offset().left - $(document).scrollLeft(); var img_top = $(this).offset().top - $(document).scrollTop(); that.img_x = ((that.xx - img_left) / img_w) * 100 + '%'; that.img_y = ((that.yy - img_top) / img_h) * 100 + '%'; });