$("#ifTree").jstree({
"plugins" : ["themes","html_data","ui","crrm"],
"themes" : {
"theme" : "apple",
"dots" : true,
"icons" : false
}
});
$("#createIf_c").click(function () {
$("#ifTree").jstree("create",null,"inside", { "data" :{ title:"if",value:"expression"} },
function() {}, true);
});
$("#display").click(function(){
var a = $.jstree._focused().get_selected();
alert(a.attr("value"));
});
上記のコードでは、jstreeを作成し、IDが#createIf_cのボタンをクリックすると、タイトルが「if」のノードを追加していますが、このノードにさらにデータを関連付けたいので、さらに属性を追加しました。ノードの作成中。次に、この関連データ、ここでは「値」にアクセスしようとすると、アラート「未定義」が表示されます。では、データをノードに関連付ける別の方法はありますか?または、ノードの関連データにアクセスする別の方法はjstreeですか?..助けてください...。