当我旋转设备时,我试图获取图像的大小和位置,但它总是显示相同的。
$(window).bind('orientationchange', function(evt) {
var height = $('#imgg').height();
var width = $('#imgg').width();
alert(height);
alert(width);
var position = $('#imgg').position();
alert('left: ' + position.left + ', top: ' + position.top);
});