【发布时间】:2011-03-04 14:49:43
【问题描述】:
如果我有一个 onChange 函数在方向改变发生时触发,我如何在 onChange 中设置一个值来更新 jquery 选择器。例如:
$(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
});
【问题讨论】:
标签: jquery orientation screen-orientation device-orientation