我似乎无法让jquery time before plugin工作。
这是我的代码
<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>
它似乎没有起作用......
答案 0 :(得分:2)
将此添加到您的页面:
jQuery(document).ready(function() {
jQuery("abbr.timeago").timeago();
});
请务必按照http://timeago.yarp.com/中的说明操作(参见操作方法?部分)
答案 1 :(得分: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>
希望这会有所帮助