禁用角度引导corousel中的左右滑动

时间:2016-04-06 07:42:58

标签: javascript angularjs twitter-bootstrap

我想为angular bootstrap corousel禁用ng-swipe-right和ng-swipe-left动作。这是我试过的:

在corousel加载后:

{{1}}

这不起作用,我缺少什么

1 个答案:

答案 0 :(得分:0)

我不确定你为什么这样做但是回答你的问题

您可以尝试此操作以删除angular.js中的属性。

var selectedElement = angular.element( document.querySelector( '.carousel' ) )
selectedElement[0].removeAttribute("ng-swipe-right")

这可以更改特定的属性值

var selectedElement = angular.element( document.querySelector( '.carousel' ) )
selectedElement.attributes['ng-swipe-right'].value = "newValue";

希望它有所帮助。