在我的指令中,我有以下代码:
// hide all drodowns with this attribute
$(document).find('[dropdown]').each(function (index) {
if ($(this).is(':visible')) {
var a = $(this).attr('ng-show');
???
}
});
在问号的地方,我想做以下事情:获取ng-show
属性的值并将该值设置为 false。我从 jQuery 得到的值例如是这样的showActionsDropdown
:这个值是我范围内的一个变量。
我想知道的是如何将值更改showActionsDropdown
为 true。