菜鸟教程小白 发表于 2022-12-13 08:47:53

javascript - iPad Javascript/jQuery touchstart 问题


                                            <p><p>我在 iPad 上有一个页面,但在实现等效的鼠标移出行为时遇到了一些问题。</p>

<p>所以我有:</p>

<ol>
<li>在我的页面上,点击(或者更确切地说是触摸)有一个复选框,我想显示一个 errorMsg </li>
<li>点击/触摸除 errorMsg 以外的任何内容时,我想隐藏 errorMsg</li>
</ol>

<p>下面是我写的代码;</p>

<pre><code>$(document).bind(&#34;touchstart&#34;,function(e){
         if(e.target.id != &#34;checkbox_err&#34;)
      $(&#34;span#checkbox_err&#34;).fadeOut(&#34;slow&#34;);
   });
}


$(&#34;input:checkbox&#34;).bind(&#34;touchstart&#34;,function(){
$(&#34;span#checkbox_err&#34;).fadeIn(&#34;fast&#34;);

});
</code></pre>

<p>现在的问题是,当我单击/触摸复选框时,errorMsg 会显示一段时间,然后它也会立即将其隐藏(因为目标不是 errorMsg)</p>

<p>我该如何解决这个问题?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>据我所知,没有必要实现触摸事件来实现您想要的。您可以使用常见的点击事件。它将被设备的浏览器模拟。</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - iPad Javascript/jQuery touchstart 问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7010333/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7010333/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - iPad Javascript/jQuery touchstart 问题