コードを流す
<script type="text/javascript">
$(document).ready(function() {
$("#demo1").bind('loaded.jstree', function(e, data) {
// invoked after jstree has loaded
$('#demo1 ul>li').addClass('topMenu');
$('#demo1 ul>li').css('background-image','/Images/SgTLink_After_Login_07.png');
}).jstree({
"json_data": {
"ajax": {
"type": "POST",
"dataType": "json",
"contentType": "application/json;",
"url": "/Desktop/MenusFunc.aspx/GetAllNode",
"data": function(node) {
return '{ "operation" : "get_children"}';
},
"success": function(retval) {
return retval.d;
}
}
},
"plugins": ["themes", "json_data"]
});
});
</script>
すべてのtreeNodeの画像を取得してdbに保存しましたが、どうすれば変更できますか? thx 質問が基本的なように思われる場合は申し訳ありませんが、基本的なことをしようとするとドキュメントに従うのが難しいと思います. :)