我刚刚注意到一些简单的 jQuery 不适用于移动版 IE9 和 IE10。我有一些版权链接和使用animate()
. 我也将 scrollTo 插件与 jQuery 结合使用。我尝试了不同的版本,仍然没有解决方案。也许我错过了一些明显的东西。
这是一个版权链接和打开和关闭联系表的代码。
$('#privacy').click(function(){
$('#copyright').hide('fast');
$('#policy').toggle('slow');
$.scrollTo('+=800px', 800, { axis:'y' });
});
$('#plusSign').click(function(){
if ($('#contactFormHolder').hasClass('active')){
$('#contactFormHolder').animate({top:'-200px'},1000).removeClass('active');
}else{$('#contactFormHolder').animate({top:'0px'},1000).addClass('active');}
});