查询:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/timeago.js" ></script>
$(document).ready(function(){
jQuery("abbr.timeago").timeago();
});
html:
<abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>
function Refresh() {
setTimeout(function(){
<?php echo 'var id = '.json_encode($_GET['id']).';'; ?>
$('#cmdz').load('cmdajax.php?id='+id);
},1000);
}
#cmdz
div 包含abbr
标签。timeago 在 onload 中正常工作,但是当 div 刷新时它不会工作。
由于某种原因jQuery("abbr.timeago").timeago();
功能无法正常工作。在这里你可以找到完整的代码:在ajax调用jquery函数后不能正常工作