Jクエリ:
<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 関数が正しく機能しない