我想在 angular.js 中集成可调整大小的 jquery UI,但无法这样做,我正在尝试使用 angular.js 中的调整大小句柄调整 div 的大小,但我没有这样做。任何帮助都会很棒。我已经创建了 resize 指令并包含 jquery Ui js 以调整大小但它不起作用。
app.directive('resize', function() {
return {
// A = attribute, E = Element, C = Class and M = HTML Comment
restrict:'E',
//The link function is responsible for registering DOM listeners as well as updating the DOM.
link: function(scope, element, attrs) {
element.resizable();
}
};
});
提前致谢 !!