前端那些年遇到的坑

一、透明度opacity屬性會被子元素繼承,並且子元素從新設置opacity屬性會不起做用;html

    若不想子元素繼承父元素的透明度可經過backgroud-colorl來設置背景顏色的透明度,如background-color: rgba(0,0,0,0.5);htm

二、ng-repeat裏面的ng-module的做用域是ng-repeat這個子做用域的$scope,不屬於ng-controller中的$scope,因此ng-module綁定數據時要在變量前面加上$parent才能在ng-controller中的$scope中獲取;繼承

    如在html代碼中的ng-module設置爲:ng-module="$parent.hello",在controller中就能夠用$scope.hello來改變和獲取hello變量的值。ci

相關文章
相關標籤/搜索