javascript - onTouchStart vs onClick in React? - Stack Overflow

When I was building a project, I found that ponent worked way I was intended when I double clicked it b

When I was building a project, I found that ponent worked way I was intended when I double clicked it button that using onClick. But when I changed onClick to onTouchStart, it starts to work I intended.

But I am bit worried using this without not knowing the difference with onClick method.

Is there a specific case that I should use onTouchStart instead onClick in React.js?

When I was building a project, I found that ponent worked way I was intended when I double clicked it button that using onClick. But when I changed onClick to onTouchStart, it starts to work I intended.

But I am bit worried using this without not knowing the difference with onClick method.

Is there a specific case that I should use onTouchStart instead onClick in React.js?

Share Improve this question asked Dec 19, 2019 at 12:53 GoonGamjaGoonGamja 2,2868 gold badges26 silver badges53 bronze badges 1
  • stackoverflow./questions/9633297/… – Chris Commented Dec 19, 2019 at 12:55
Add a ment  | 

2 Answers 2

Reset to default 4

OnTouchStart is an event for devices with digitizer(touch devices). OnClick is an event for click (mouse) or tap (digitizer devices).

Open this Codepen on a mobile device and on desktop: http://codepen.io/blixt/pen/pgvGdK.

You will experience that the slide works in mobile but not in desktop.

You can achieve the same experience on desktop using mouse events: mouseup, mousedown and mousemove.

onTouchStart start is a touch event which fires when the user touches the element.

onClick is a mouse event which fires when user clicks on the element.

Touch event only work for touch screens, although there are ways to bind touch events with onClick events.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743700647a4492510.html

相关推荐

  • javascript - onTouchStart vs onClick in React? - Stack Overflow

    When I was building a project, I found that ponent worked way I was intended when I double clicked it b

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信