使用AngularJS绑定处理IE的清除按钮

时间:2015-02-20 21:19:11

标签: angularjs internet-explorer

IE在每个文本输入中都有一个“X”,用于清除输入。但是,单击此按钮时,在清除文本框时,它不会更新输入绑定的Angular模型。

<input type="text" ng-model="name" />

有关行为的示例,请参阅http://jsfiddle.net/p5x1zwr9/

有关此行为的视频,请参阅http://youtu.be/LFaEwliTzpQ

我正在使用IE 11。

编辑:Knockout似乎有一个解决方案,但我不知道如何将它应用于AngularJS:Handle IE 9 & 10's clear button with Knockout binding

更新: Jonathan Sampson 帮助我意识到这实际上在1.3.6之前的AngularJS版本中有效,所以这可能是一个新的Angular bug。

更新:已解决的问题:https://github.com/angular/angular.js/issues/11193

6 个答案:

答案 0 :(得分:17)

输入表单中的X按钮对于IE10 +是原生的,你不能对它做任何事情,但只能用CSS隐藏它:

input[type=text]::-ms-clear {
   display: none;
}

然后你可以创建自己的指令来模仿这种行为。只需创建一个跨度,将其放在输入内并添加ng-click,这将清除输入的模型值。

答案 1 :(得分:7)

我为输入文本元素创建了这个Angular指令,当单击clear('X')按钮时,它会手动调用元素的change()事件。这解决了我们项目的问题。我希望它能帮助别人。

angular.module('app')
    .directive('input', function () {
        return {
            restrict: 'E',
            scope: {},
            link: function (scope, elem, attrs) {

                // Only care about textboxes, not radio, checkbox, etc.
                var validTypes = /^(search|email|url|tel|number|text)$/i;
                if (!validTypes.test(attrs.type)) return;

                // Bind to the mouseup event of the input textbox.  
                elem.bind('mouseup', function () {

                    // Get the old value (before click) and return if it's already empty
                    // as there's nothing to do.
                    var $input = $(this), oldValue = $input.val();
                    if (oldValue === '') return;

                    // Check new value after click, and if it's now empty it means the
                    // clear button was clicked. Manually trigger element's change() event.
                    setTimeout(function () {
                        var newValue = $input.val();
                        if (newValue === '') {
                            angular.element($input).change();
                        }
                    }, 1);
                });
            }
        }
    });

感谢这个答案(Event fired when clearing text input on IE10 with clear icon),JavaScript代码可以检测到清除按钮。

答案 2 :(得分:0)

我能够使用以下指令解决这个问题 - 从上面的0x783e回答得出。它可以提供与更高版本的角度更好的兼容性。除了ng-change之外,它应该与$ watch或parsers一起使用。

angular
    .module('yourModuleName')
    .directive('input', FixIEClearButton);

FixIEClearButton.$inject = ['$timeout', '$sniffer'];

function FixIEClearButton($timeout, $sniffer) {
    var directive = {
        restrict: 'E',
        require: '?ngModel',
        link: Link,
        controller: function () { }
    };

    return directive;

    function Link(scope, elem, attr, controller) {
        var type = elem[0].type;
        //ie11 doesn't seem to support the input event, at least according to angular
        if (type !== 'text' || !controller || $sniffer.hasEvent('input')) {
            return;
        }

        elem.on("mouseup", function (event) {
            var oldValue = elem.val();
            if (oldValue == "") {
                return;
            }

            $timeout(function () {
                var newValue = elem.val();
                if (newValue !== oldValue) {
                    elem.val(oldValue);
                    elem.triggerHandler('keydown');
                    elem.val(newValue);
                    elem.triggerHandler('focus');
                }
            }, 0, false);
        });

        scope.$on('$destroy', destroy);
        elem.on('$destroy', destroy);

        function destroy() {
            elem.off('mouseup');
        }
    }
}

答案 3 :(得分:0)

使用CSS隐藏 而不是'type = text'在搜索字段中使用'type = search'。通过这样做,只有标记为'type = search'的输入才会有'X',但其他输入仍然会有'X',这是许多其他输入所必需的IE中的字段。

input[type=search]::-ms-clear {
   display: none;
}

答案 4 :(得分:0)

<input type="text" ng-model="name" id="search" />

This solution works for me

$("#search").bind("mouseup", function(e){
  var $input = $(this),
      oldValue = $input.val();

  if (oldValue == "") return;

  // When this event is fired after clicking on the clear button
  // the value is not cleared yet. We have to wait for it.

  setTimeout(function(){

    var newValue = $input.val();
    if (newValue == ""){
$scope.name="";
$scope.$apply();

    }
  }, 1);

});

答案 5 :(得分:-1)

我提出的解决方案,虽然没有立即更新模型,如删除X并实现自己的解决方案,它确实解决了我所需要的。我所做的就是添加ng-model-options以包含模糊。因此,当输入模糊时,它将更新范围值。

<input type="text" ng-model="name" ng-model-options="{ updateOn: 'default blur'}"  />