要素に属性を割り当てる必要がありid
、その後、関数witchがこの一意のを使用しますid
。
HTML:
<div class="item-timeleft" data-bind="id: 'timer'+ID, init: zxcCountDown('timer'+ID, 'message', 20)">
</div>
Javascript:
var data = [];
var viewModel = {
item: ko.observableArray(data)
};
ko.applyBindings(viewModel);
$.ajax({
url: 'api/item/all',
dataType: 'json',
success: function (data) {
var item_array = [];
$.each(data, function (index, item) {
item_array[index] = item;
});
viewModel.item(item_array);
console.log(data);
}
});
追加のJavaScriptとカスタムバインディング:
ko.bindingHandlers.id = {
init: function (element, valueAccessor, allBindingsAccessor, viewModel) {
},
update: function (element, valueAccessor, allBindingsAccessor, viewModel) {
$(element).attr('id', valueAccessor());
}
};
function zxcCountDown(id, mess, secs, mins, hrs, days) {
var obj = document.getElementById(id);
alert(obj.id);
var oop = obj.oop;
if (!oop) obj.oop = new zxcCountDownOOP(obj, mess, secs, mins, hrs, days);
else {
clearTimeout(oop.to);
oop.mess = mess;
oop.mhd = [mins, hrs, days];
oop.srt = new Date().getTime();
oop.fin = new Date().getTime() + ((days || 0) * 86400) + ((hrs || 0) * 3600) + ((mins || 0) * 60) + ((secs || 0));
oop.end = ((oop.fin - oop.srt));
oop.to = null;
oop.cng();
}
}
コンソールで再トリガーすると関数は正常に機能しますが、どういうわけかIDを割り当ててから関数をトリガーする方法がわかりません。