gpt4 book ai didi

javascript - jQuery 点击事件仅适用于横向(iPad)

转载 作者:行者123 更新时间:2023-12-03 11:18:00 25 4
gpt4 key购买 nike

我有一个点击事件,仅当我的 iPad 处于横向时才有效,但当我将其转为纵向时,它就会停止工作。谁能告诉我为什么?

<div id="home_page">
<div class="full">
<button class="button" id="func_checks">Functional Checks</button>
</div>
</div>

$(document).ready(function(){
$("#func_checks").on("click touchstart", function(){
$("#header").append("<h1>G-IV Functional Checks</h1>");
$("#home_page").hide();
$(".return").show();
$("#checks_page").show();
})
})

最佳答案

将点击处理程序修改为:

$("#func_checks").on("click touchstart", function(){
$("#header").append("<h1>G-IV Functional Checks</h1>");
$("#home_page").hide();
$(".return").show();
$("#checks_page").show();
});

关于javascript - jQuery 点击事件仅适用于横向(iPad),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27250657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com