ビューをビューモデルにバインドするためにノックアウトを使用しています。
私は次のように考えています。
<table>
<tr>
<td data-bind ="text: ConcenatedData"></td>
</tr>
</table>
私のビューモデルはajax呼び出しを行い、データを監視可能な配列にバインドします
function showData() {
return $.ajax({
url: "../Service/EmpData",
type: "PUT",
contentType: 'application/json',
processData: false,
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(errorThrown);
},
success: function (allData) {
var Data = $.map(allitems, function (item) {
return new EmpList(item);
});
self.EmployeeData(Data);
}
});
}
function EmpList(items) {
this.EmpName = ko.observable(data.EmpName);
this.EmpId = ko.observable(data.EmpId);
this.ConcenatedData = ko.observable(data.ConcenatedData);
}
オブザーバブルでデータを次のように取得します<temp>Is this Emp required</temp>in our company
だから私はタグの間のテキストを太字にしたい ので、<temp> and </temp>.
出力はIs this Emp required in our company`
これを達成する方法は?
アップデート
ここでフィドルを作成しました。タグ間のテキストを<temp> and </temp>.
太字にしたいです 。