2
如果我在發生方向更改時觸發onChange函數,如何在onChange中設置一個值來更新jquery選擇器。例如:評估orientationEvent並設置一個值?
$(document).ready(function(){
var onChanged = function() {
if(window.orientation == 90 || window.orientation == -90){
image = '<img src="images/land_100.png">';
}else{
image = '<img src="images/port_100.png">';
}
}
$(window).bind(orientationEvent, onChanged).bind('load', onChanged);
$('#bgImage').html(image); //won't update image
});