html agility packでhtml-page を解析しようとしていますが、要素から何らかの値を取得したいのですが、この値はノックアウト モデルに設定されています。
//...
function jsCycle(cycleid /* another variables */) {
this.CycleYearID = ko.observable(cycleid);
/* another variables */
};
var c1 = new jsCycle('1edb0cc2-82af-e211-896a-3c4a92dbdc51'/* another variables */);
ko.applyBindings(c1, $('#BoundCycleAreaOne')[0]);
jsModel.cycles.push(c1);
//...
要素を取得でき'#BoundCycleAreaOne'
ます:
var period = document.QuerySelectorAll("#BoundCycleAreaOne");
しかし、私も彼が必要CycleYearID
です。どうすれば入手できますか?