1

誰もがこれをまだ試しますか?私はそれを機能させるのに苦労しています。

次の両方(どちらか一方)を使用して、テンプレートの先頭で初期化してみました。

<script>
$('div:jqmData(role="page")').live('pagebeforeshow',function(){
   jQuery("abbr.timeago").timeago();
});
</script>

<script>
jQuery(document).ready(function() {
  jQuery("abbr.timeago").timeago();
});
</script>

次に、コンテンツセクションで、次のコマンドを使用して実装してみます。

<abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>

timeagoのドキュメントが示唆しているように。

私は見るだけJuly 17, 2008で、動的な時間の変化はありませんが。

誰もがこれを行う方法を知っていますか?

4

1 に答える 1

1

この例でわかるように、これは機能します:http: //jsfiddle.net/Gajotres/KXHBj/

HTML:

<!DOCTYPE html>
<html>
<head>
    <title>jQM Complex Demo</title>
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
    <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/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
</head>
<body>
    <div data-role="page" id="index">
        <div data-theme="a" data-role="header">
            <h3>
                First Page
            </h3>
            <a href="#second" class="ui-btn-right">Next</a>
        </div>

        <div data-role="content">
            <abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>
        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div>  
</body>
</html>   

JS:

$(document).on('pagebeforeshow', '#index', function(){       
    $(".timeago").timeago();
});
于 2013-02-01T19:54:14.920 に答える