我试图用Jquery创建一个网站,在Chrome浏览器中它工作正常但是如果我在浏览器中使用检查选项进行测试,如果我选择iphone 4或5或6,那么唯一的代码就是切换导航栏,一旦我滚动网站,它确实会改变DOM。
任何帮助?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<link href="fonts.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<script>
x = 0;
$(function() {
$(".icon-menu").click(function(){
$("nav").toggle();
x = 0;
});
$(document).scroll(function(){
$(".menu_txt").text( x=x+ 1);
if (x > 30) {
$("nav").hide();
}
});
$(".company").click(function() {
$('html, body').animate({
scrollTop: $(".name_question:eq(2)").offset().top - 55
}, 2000);
});
});
</script>
答案 0 :(得分:0)
iOS不知道
是什么$("html,body")
只尝试
$("body")