0
如何獲取Kendo UI Treeview中選定項的文本Checked?Kendo UI Treeview Checked - 獲取所有選中節點的文本
E.g alert($(this).data.text);不起作用。我需要發送所有選定節點的文本到服務器我想要在數組中獲取此信息。
$("#treeview .k-item input[type=checkbox]:checked").closest(".k-item").each(function() {
// change whatever you want, for example:
**alert($(this).data.text);**
$(this).css("color", "green");
});
謝謝。 Hardeep
This is working alert(this.textContent); – user2739418
以下是正在工作。警報(this.textContent); – user2739418