0

我有一个关于在另一个函数中使用从设备方向事件收到的值的问题。这就是我所拥有的:

$(window).ready(function(){ 
    $("#btnShowDirection").click(showDirection);

    // Device orientation
    if (window.DeviceOrientationEvent) {
        window.addEventListener("deviceorientation", handleOrientation, false);
    } else {
        alert("Device Orientation is not available");
    }
}); // END OF DOCUMENT READY

// orientation object to save heading of the device
var orientation = {};

function handleOrientation(orientData) {
    var alpha = orientData.alpha;
    orientation.value = alpha;
}

var watchProcess = null;  
function showDirection() {
    if (navigator.geolocation) {
        if (watchProcess == null) {
            navigator.geolocation.watchPosition(geoWatchSucces,geoError);  
        }
    } else {
        alert("Geolocation is not supported!");
    }
}

function geoWatchSucces(position) {
    alert(orientation.value);
}

alert(orientation.value);回馈未定义。我怎样才能解决这个问题?我想在我的 watchprocess 成功函数中使用该变量。

jsfiddle:http: //jsfiddle.net/HJTNJ/

尼尔斯

4

1 回答 1

1

orientation.value 设置在 $(window).ready 范围内,在你的 geoWatchSucces 函数中:方向只是一个空对象......

于 2013-05-16T08:31:51.183 回答