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

时间:2014-12-02 13:27:56

标签: javascript jquery ipad

我有一个点击事件,只有在我的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();
    })
})

1 个答案:

答案 0 :(得分:1)

将点击处理程序修改为:

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