2017-02-25 4 views

答えて

1

aria-expanded属性を設定するために両方向を使用できます。両方とも正しく属性を設定します。

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

通常、最初のオプションが使用されますが、両方を使用できます。

関連する問題