私のjavascript HTMLテンプレートが時間を自動更新しないが、通常のHTMLはなぜですか?ここで私が使用しているテンプレートライブラリの:https://github.com/blueimp/JavaScript-Templates自動更新、facebookスタイルの時刻書式設定
はここに(:http://jsfiddle.net/trpeters1/SpYXM/76/をあなたはここでそれをいじることができます):私のJSのです
$(document.body).on('click', 'button', function(){
var id= $(this).data('id');
var data={id:id, string: "just now...", fxn: nicetime()};
var result = tmpl('<div id="string" data-id="'+id+'">{%=o.string%}</div><div id="function" data-id="'+id+'">{%=o.fxn%}</div>', data);
$('div[data-id="'+id+'"]').html(result);
nicetime();
});
function nicetime(){
var time = new Date(),
var comment_date = setInterval(function() {
var time2 = time_since(time.getTime()/1000);
$('#time_since').html(time2);
return time2;
},
1000);
}
HTML:
<button data-id="1">1</button>
<div data-id="1"></div> //tmpl output
<div id="time_since"></div> //non-tmpl output
jqueryのデータ()関数は、()だけATTRを使用して、データ属性とは何の関係もありません。 – Musa
@Musaありがとう、setIntervalの問題についての提案はありますか? –