我想为angular bootstrap corousel禁用ng-swipe-right和ng-swipe-left动作。这是我试过的:
在corousel加载后:
{{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";
希望它有所帮助。