jquery--Mobile-Touch Event

Source: Internet
Author: User

First, in order to prevent the event from triggering the default behavior, we need to disable the security method:

// determines whether the default behavior can be disabled    if (e.cancelable) {        //  determine if the default behavior has been disabled        if (!  e.defaultprevented) {            e.preventdefault ();        }}   

Three events:

function (e) {   e.preventdefault ();}); $ (function(e) {   e.preventdefault ();}); $ (function(e) {   e.preventdefault ();});

Move the start and end coordinates to get:

StartX = e.originalevent.changedtouches[0= e.originalevent.changedtouches[0= E.originalevent.changedtouches[0= e.originalevent.changedtouches[0].pagey;

Examples:

function (e) {    e.preventdefault ();     = E.originalevent.changedtouches[0].pagex,    = E.originalevent.changedtouches[0].pagey;}); $ (function(e) {    e.preventdefault ();     = E.originalevent.changedtouches[0].pagex,    = e.originalevent.changedtouches[0].pagey,    = moveendx- StartX,    = Moveendy- starty;     if (X > 0 ) {       alert (' swipe left ');    }});

Corresponding PC-side mouse operation:

Touchstart--     mousesdowntouchend  -->   mouseuptouchmove  -->   MouseMove

jquery--Mobile-Touch Event

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.