0

jquery time before プラグインが機能しないようです。

これが私のコードです

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="jquery.timeago.js"></script>
</head>

<body>
 <abbr class="timeago" title="19 March 2013 04:51:33 PM"></abbr>
</body>
</html>

機能していないようです...

4

2 に答える 2

2

これをページに追加します。

jQuery(document).ready(function() {
  jQuery("abbr.timeago").timeago();
});

http://timeago.yarp.com/の指示に従ってください(「方法」セクションを参照) 。

于 2013-03-19T11:58:07.407 に答える
2

このようにプラグインを開始する必要があります

jQuery(document).ready(function($){
 $("abbr.timeago").timeago()

});

最終的なコードは次のようになります

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="jquery.timeago.js"></script>
</head>

<body>
 <abbr class="timeago" title="19 March 2013 04:51:33 PM"></abbr>

    <script>
    jQuery(document).ready(function($){
     $("abbr.timeago").timeago()

    });
    </script>

</body>
</html>

お役に立てれば

于 2013-03-19T12:00:28.310 に答える