今天没事准备研究看看有什么动态树,发现jquery的插件挺好的,全部加载一点问题都没,就是这个动态加载的问题,明明
$(document).ready( function() {
alert('ready');
$.ajax({
url:'http://localhost:8080/optExcel/tree/index.do?root=source',
type:'get', //数据发送方式
error:function(msg){
alert( "not lived!");
},
async: false ,
success: function(msg){
alert(msg);
}
});
});
上面这个脚本能执行,为什么以下这个就不行呢?
$("#categorys").treeview( {
url : "http://localhost:8080/optExcel/tree/index.do?root=source"
});
大家对这个感兴趣的可以看看!
名字就是:jquery treeView!
目前此问题(动态加载)已解决!正在整理后台....
$(document).ready( function() {
alert('ready');
$.ajax({
url:'http://localhost:8080/optExcel/tree/index.do?root=source',
type:'get', //数据发送方式
error:function(msg){
alert( "not lived!");
},
async: false ,
success: function(msg){
alert(msg);
}
});
});
上面这个脚本能执行,为什么以下这个就不行呢?
$("#categorys").treeview( {
url : "http://localhost:8080/optExcel/tree/index.do?root=source"
});
大家对这个感兴趣的可以看看!
名字就是:jquery treeView!
目前此问题(动态加载)已解决!正在整理后台....