我有一個調整大小的圖像(寬度=「100」)和一個jQuery腳本來輸出當前的座標,當我點擊該圖像。獲取與jquery點擊圖像座標
<img id="image" src="http://localhost/image.jpg" width="100" >
<script>
$('#image').mousemove(function(event) {
window.current_x = Math.round(event.pageX - $('#image').offset().left) ;
window.current_y = Math.round(event.pageY - $('#image').offset().top);
window.current_coords = window.current_x + ', ' + window.current_y;
$('#edit_instants_now').html('Current position: ' + window.current_coords + '.');
}).mouseleave(function() {
$('#edit_instants_now').html(' ');
}).click(function() {
$('#edit_instants_click').html('Last click: ' + window.current_coords + '. ');
document.edit_instant.edit_instant_x.value = window.current_x;
document.edit_instant.edit_instant_y.value = window.current_y;
});
</script>
問題是我想獲取原始圖像的實際座標而不是調整大小。
你有什麼建議嗎?謝謝。
你知道原來的大小?如果是這樣,你可以插入。 –
如果你沒有辦法得到它:http://stackoverflow.com/questions/623172/how-to-get-image-size-height-width-using-javascript –
大小並不總是相同。它有各種尺寸。 – redviper2100