2017-02-25 603 views

回答

1

我们可以用两种方法设置aria扩展属性。两者都会正确设置属性。

$(".dropdown-toggle").attr("aria-expanded", "true"); 
$(".dropdown-toggle").attr("aria-expanded", true); 

通常使用第一个选项,但我们可以同时使用。

相关问题