angularjs if / else语句和窗口宽度

时间:2014-04-15 08:02:28

标签: javascript jquery angularjs angularjs-directive angularjs-scope

我是AngularJS的新手,最近将它介绍到我的应用程序中。我试图在我的控制器中重写一些现有的jQuery代码,但有一次,我正在使用:

jQuery的:

if ($(window).width() < 700) {

   $('.productsHeading').on('click', function() {

       $(".productsBody").hide();
       $(".aboutUsBody").show();

   });
}

我可以在我的DIV中使用.hide().show()来解决ng-hide="productsBody"ng-hide="aboutUsBody" ..这些是通过ng-click="productsheading()"处理的。但是,我面临的问题是,我该如何处理:

if ($(window).width() < 700) {

在AngularJS中?我正在使用AngularJS v1.1.5

2 个答案:

答案 0 :(得分:6)

在AngularJS中,如果你想对HTML或DOM操作进行更改,那么推荐或最佳实践就是使用相同的指令。

写下指令可能会在下面链接有帮助:

AngularJS event on window innerWidth size change

http://jsfiddle.net/jaredwilli/SfJ8c/

指令的HTML

<div ng-app="miniapp" ng-controller="AppController" ng-style="style()" resize>window.height: {{windowHeight}}
    <br />window.width: {{windowWidth}}
    <br />
</div>

指令的Javascript代码

    app.directive('resize', function ($window) {
    return function (scope, element) {
        var w = angular.element($window);
        scope.getWindowDimensions = function () {
            return {
                'h': w.height(),
                'w': w.width()
            };
        };
        scope.$watch(scope.getWindowDimensions, function (newValue, oldValue) {
            scope.windowHeight = newValue.h;
            scope.windowWidth = newValue.w;

            scope.style = function () {
                return {
                    'height': (newValue.h - 100) + 'px',
                        'width': (newValue.w - 100) + 'px'
                };
            };

        }, true);

        w.bind('resize', function () {
            scope.$apply();
        });
    }
})

答案 1 :(得分:2)

根据浏览器的不同,您将找到用于检索元素大小的大多数实现。

您最好的选择是使用jQuery的宽度方法,该方法在任何浏览器上都会有相同的结果。

顺便说一句,如果要更改为Angular,则无需完全删除jQuery。

对于某些功能,jQuery可能会提供最佳实现。