gpt4 book ai didi

jquery - 将 JQuery 树插件转换为 Angularjs 指令

转载 作者:行者123 更新时间:2023-12-01 04:06:45 24 4
gpt4 key购买 nike

下面是我在之前的项目中使用的JQuery树插件

http://www.abeautifulsite.net/jquery-file-tree/

现在我需要将其转换为 Angularjs 指令。

谁能帮我实现这一目标吗?

最佳答案

终于找到了一个解决方案,而且非常简单

App.directive('filetree', function () {
return {
restrict: 'A',
replace: 'true',
link: function (scope, element, attrs, ngModelCtrl) {
$(function () {
$('#container_id').fileTree({
root: '/',
script: '/Exm/source/vendors/couple/jqueryFileTree.jsp',
expandSpeed: 1,
collapseSpeed: 1,
multiFolder: false
}, function(file) {
alert(file);
});
});
}
}
});

关于jquery - 将 JQuery 树插件转换为 Angularjs 指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26545449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com