0

これはばかげているように聞こえるかもしれませんが、私は Jquery noob であり、モバイルで左右にスワイプしたときにサイズを変更する div タグを作成しようとしています。ここのjqueryグルは私を助けてくれますか!!!! ありがとうございました

ここにコードがあります

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>

  <div class="box">
  </div>

  <script>
    $(function right(){
      // Bind the swiperightHandler callback function to the swipe event on div.box
      $( "div.box" ).on( "swiperight", swiperightHandler );

      // Callback function references the event target and adds the 'swiperight' class to it
      function swiperightHandler( event ){
        $( event.target ).addClass( "swiperight" );
      }
    });

    $(function left(){
      // Bind the swiperightHandler callback function to the swipe event on div.box
      $( "div.box" ).on( "swipeleft", swiperightHandler );

      // Callback function references the event target and adds the 'swiperight' class to it
      function swiperightHandler( event ){
        $( event.target ).addClass( "swipeleft" );
      }
    });
  </script>
</body>
</html>
4

2 に答える 2

1

クラスを削除して追加する必要があります

function swiperightHandler( event ){
  $( event.target ).removeClass('swipeleft').addClass( "swiperight" );
}

function swiperightHandler( event ){
  $( event.target ).removeClass('swiperight').addClass( "swipeleft" );
}
于 2013-08-23T02:58:58.763 に答える
0

おそらく複数回実行されている可能性があり、addClassそのクラスが要素に既に追加されているため、2回目に呼び出しても何もしません!

于 2013-08-23T02:53:08.593 に答える