1

jQueryMobile スライダーの変更イベントをリッスンするのが困難です。

このページでは、イベントはイベント「slidestop」を正しくトリガーします:
http://jsfiddle.net/2HEcY/
私のページ の同じコードは何もトリガーしません:
http://www.marianotomatis.it/test.php

できるこのコードに何か問題がありますか?

<html>
<head> 
    <title>My Page</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head> 
<body> 

<div data-role="page">

    <div data-role="header">
        <h1>My Title</h1>
    </div><!-- /header -->

    <div data-role="content">    
        <label for="slider-step">Input slider:</label>
        <input type="range" name="slider-step" id="slider-step" value="150" min="0" max="500" />      
    </div><!-- /content -->

</div><!-- /page -->
<script>$("#slider-step").on("slidestop", function(e){ alert("STOP!"); });</script>

</body>
</html>
4

1 に答える 1