如何在动态更改选项时修复IE选择问题

时间:2012-10-17 20:18:06

标签: internet-explorer angularjs html-select

我有一组选择,所有选项都有相同的选项。然后我通过过滤器运行这些选项,以便在选择中不显示在不同选择中选择的任何选项。请参阅this jsFiddle(在非IE浏览器中)以了解我的意思。基本上我阻止在选择

中多次选择相同的选项

现在,我所做的事情在IE中存在问题。在IE中打开那个小提琴(我只在IE9中试过它,但我猜测以前的版本有同样的问题)。将最后一个选择更改为AAA。注意3个其他选择如何改变他们显示的内容。它们的模型并没有改变,但是当选项发生变化时,IE会以某种方式窒息。

我的问题是第一,我是否在使用此功能时出错?这个代码完全符合我在Chrome和FF中的要求,但是我做的是我不应该做的事情吗?其次,我怎样才能在IE中解决这个问题?我尝试了一些可以清除和重新设置模型的超时,但事情明显地跳了起来。我想知道是否有一个良好,干净,低影响的解决方法。

非常感谢任何帮助。感谢。

- UPDATE -

Angular本身fixed version 1.3.3使用A. S. Ranjan's solution http://jsfiddle.net/m2ytyapv/。请参阅1.3.3的新小提琴:{{3}}

//dummy code so I can post the edit

13 个答案:

答案 0 :(得分:29)

我在另一个晚上经历了同样的问题,在投掷了我能想到的所有内容后,我得出的结论是IE在使用选择时不想处理更新过滤器。

我的解决方案是将您的选择更改为:

 <select class="selectList" ng-repeat="currId in selectedIds" ng-model="selectedIds[$index]"  ng-options="currOption.id as currOption.value for currOption in myObj | myfilter:selectedIds:$index" data-ng-change="fixIE()"></select>

他们现在有一个班级和一个ng-change。然后在你的控制器中做一些有趣的代码:

$scope.fixIE = function(){
    //code to check if IE so the other browsers don't get this ugly hack.
    var selectLists = document.querySelectorAll(".selectList");
    for(var x = 0;x  < selectLists.length; x++){
        selectLists[x].parentNode.insertBefore(selectLists[x], selectLists[x]);
    }       
};

它的作用是将元素从DOM中删除并将它们替换为相同的位置。这是一个工作小提琴 jsFiddle

我试过的其他一些不涉及javascript的解决方案就像切换选择的显示/可见性一样。他们的zIndex被移动了。唯一确定它的是这段代码。

答案 1 :(得分:20)

我有修复。

我们必须添加和删除选项列表以触发IE8中的渲染。

http://kkurni.blogspot.com.au/2013/10/angularjs-ng-option-with-ie8.html


/**
 * Fix for IE select menus getting stuck when their underlying list changes.
 * Original code: http://kkurni.blogspot.com.au/2013/10/angularjs-ng-option-with-ie8.html
 * 
 * Set the `ie-select-fix` attribute to the model expression that should trigger the list to re-render.
 * 
 * @example <select ng-model="modelValue" ie-select-fix="itemList" ng-options="item.label for item in itemList">
 */
app.directive('ieSelectFix', ['$document',
        function($document) {

            return {
                restrict: 'A',
                require: 'ngModel',
                link: function(scope, element, attributes, ngModelCtrl) {
                    var isIE = $document[0] && $document[0].attachEvent;
                    if (!isIE) return;

                    var control = element[0];
                    //to fix IE8 issue with parent and detail controller, we need to depend on the parent controller
                    scope.$watch(attributes.ieSelectFix, function() {
                        // setTimeout is needed starting from angular 1.3+
                        setTimeout(function() {
                            //this will add and remove the options to trigger the rendering in IE8
                            var option = document.createElement("option");
                            control.add(option,null);
                            control.remove(control.options.length-1);
                        }, 0);
                    });
                }
            }
        }
    ]);

答案 2 :(得分:12)

我终于想出了一个适合我需求的解决方案。基本上似乎正在发生的事情是所选索引处的选项文本指向以前在该位置的旧字符串。我相信更改此文本会更新字符串和/或引用。我做了这样的事情:

angular.forEach($("select"), function (currSelect) {
     currSelect.options[currSelect.selectedIndex].text += " ";
});

这是更新的小提琴:http://jsfiddle.net/H48sP/35/

在我的应用程序中,我有一个指令,其中包含这些选择,因此我element.find("select")而不是$("select")来限制元素选择的范围。文本被强制刷新,因此在所有摘要周期运行后正确显示。

如果您遇到同样的问题,可能需要在小提琴中添加$timeout,和/或您可能需要稍后删除添加到选项文本中的额外空格一个问题。

答案 3 :(得分:5)

在angular.js中selectDirective的渲染函数中添加以下几行(用粗体标记为**)对我来说很好。我正在寻找除了修补angularJS或下面给出的forEach之外还有其他可能的解决方案吗?

            if (existingOption.label !== option.label) {
              lastElement.text(existingOption.label = option.label);
              **lastElement.attr('label', existingOption.label);**
            }

              (element = optionTemplate.clone())
                  .val(option.id)
                  .attr('selected', option.selected)
                  .text(option.label);
              **element.attr('label', option.label);**

问题是如果IE中的标签为空,则HTMLOptionElement的label属性与text属性不同。

通过在加载屏幕后添加以下代码并查看FF和IE的Web控制台以查看差异,可以看到这一点。如果取消注释标签设置为文本的最后一行,它可以正常工作。或者如上所述修补angular.js。

// This is an IE fix for not updating the section of dropdowns which has ng-options with filters
angular.forEach($("select"), function (currSelect) {
    console.log("1.text ", currSelect.options[currSelect.selectedIndex].text);
    console.log("1.label ", currSelect.options[currSelect.selectedIndex].label);
    //console.log("1.innerHTML ", currSelect.options[currSelect.selectedIndex].innerHTML);
    //console.log("1.textContent ", currSelect.options[currSelect.selectedIndex].textContent);
    //console.log("1.cN.data ", currSelect.options[currSelect.selectedIndex].childNodes[0].data);
    //console.log("1.cN.nodeValue ", currSelect.options[currSelect.selectedIndex].childNodes[0].nodeValue);
    //console.log("1.cN.textContent ", currSelect.options[currSelect.selectedIndex].childNodes[0].textContent);
    //console.log("1.cN.wholeText ", currSelect.options[currSelect.selectedIndex].childNodes[0].wholeText);
    //console.log("1. ", currSelect.options[currSelect.selectedIndex], "\n");

    //currSelect.options[currSelect.selectedIndex].label = "xyz";
    //currSelect.options[currSelect.selectedIndex].label = currSelect.options[currSelect.selectedIndex].text;
});

答案 4 :(得分:3)

问题似乎与过滤器返回的选项顺序有关。将最后一个选项更改为A时,其他选择选项会更改。似乎导致IE出现问题的是所选选项会改变位置。在第一个选择框中,按以下顺序从选项中选择CA, B, C, D。所选选项是第三个选项。当您将第四个选择框从G更改为A时,过滤器会将第一个框中的选项更改为B, C, D, G。所选选项现在是第二个选项,这会导致IE出现问题。这可能是Angular中的一个错误,或者可能是IE中的一些奇怪行为。我创建了一个解决此问题的分支,确保所选元素始终是过滤选项中的第一个选项:

   var newOptions = [],selected;
    angular.forEach(allOptions, function (currentOption) {
        if (!isIdInUse(selectedIds, currentOption.id)){
            newOptions.push(currentOption);
        }else if(currentOption.id == selectedIds[parseInt(index)]){
            selected = currentOption;
        }
    });
    if(selected){newOptions.unshift(selected);}

http://jsfiddle.net/XhxSD/(旧)

更新

我做了一些调试,发现导致IE出现问题的行,但我不明白为什么。它看起来像渲染错误或其他东西。我创建了另一个不需要重新排列选项的解决方法 - 它是一个监视select元素更改的指令。如果检测到更改,则会附加一个选项并立即将其删除:

.directive('ieSelectFix',function($timeout){
  return {
    require:'select',
    link: function (scope, element) {
      var isIE = document.attachEvent;

      if(isIE){
        $timeout(function(){
          var index = element.prop('selectedIndex'), children = element.children().length;
          scope.$watch(function(){
            if(index !== element.prop('selectedIndex') || children !== element.children().length){
              index = element.prop('selectedIndex');
              children = element.children().length;
              var tmp =angular.element('<option></option>');
              element.append(tmp);
              tmp.remove();
            }
          })

        });
      }
    }
  }
});

只需添加ie-select-fix即可选择ng-repeats中的元素:

<div ng-app="myApp" ng-controller="MyCtrl">
  <select ie-select-fix ng-repeat="currId in selectedIds" ng-model="selectedIds[$index]"  ng-options="currOption.id as currOption.value for currOption in myObj | myfilter:selectedIds:$index"></select><br>
  {{selectedIds}}
</div>

http://jsfiddle.net/VgpyZ/(新)

答案 5 :(得分:3)

我在IE中发现了与select相同的错误..这个错误是克隆DOM节点的结果..

如果你实例化SELECT(jQuery样式):

$select = $template.clone();

然后做:

$select.html('<option>111</option>');

你会得到上面描述的错误..

但是,如果你实例化

$select = $('< div />').html( $template ).html();

没有发生错误:)

答案 6 :(得分:2)

哦,我会为了以下建议而下地狱......!

我尝试了这些建议,但没有一个适合我。

我实际上是在使用Angular来填充每个中有多个选项的选择控件。

<select class="cssMultipleSelect" multiple="multiple" ...>

有时,Angular会填充这些控件,新数据会出现,但在IE中,您无法上下滚动查看所有选项。

但是,如果你点击F12,修改了宽度,然后将其恢复到原来的宽度,那么IE会重新恢复生命,你可以在值列表中向上和向下滚动。

所以,我的解决方案是在Angular完成填充控件之后大约一秒钟调用它:

function RefreshMultipleSelectControls()
{
    //  A dodgy fix to an IE11 issue.
    setTimeout(function () {
        $(".cssMultipleSelect").width("");
    }, 1500);
    setTimeout(function () {
        $(".cssMultipleSelect").width(298);
    }, 1600);
}

(我告诉过你这是一个狡猾的解决办法......)

另一件事:请记住,在IE11中,navigator.appName现在会返回NETSCAPE(而非MSIEMicrosoft Internet Explorer)...所以当你是测试您的代码是在IE上运行还是在体面的浏览器上运行。

你被警告了!! !!

答案 7 :(得分:0)

似乎ie9对索引有问题。以第二个示例为例,将其更改为以下代码:

  var hwcalcModule = angular.module('ie9select', []);

  function AnimalCtrl($scope) {
    $scope.categories = [{
        name: "Cats",
        kinds: ["Lion", "Leopard", "Puma"]
    }, {
        name: "Dogs",
        kinds: ["Chihua-Hua", " Yorkshire Terrier", "Pitbull"]
    }];

  $scope.animals = [{
      category: $scope.categories[1],
      kind: $scope.categories[1].kinds[1]
  }];

  $scope.changeCategory = function (animal) {
      console.log(animal.category.name);
      var name = animal.category.name;
      var index = 0;
       angular.forEach($scope.categories, function (currentOption) {
           console.log(currentOption.name);
          if (name == currentOption.name)
          {
              console.log(index);
              $scope.animals = [{
                  category: $scope.categories[index],
                  kind: $scope.categories[index].kinds[0]
              }];
           }
           index++;
       });
  }
}

http://jsfiddle.net/seoservice/nFp62/10/

答案 8 :(得分:0)

Mathew Berg回答的行上,我使用AngularJS指令对其进行了修改:

angular.module('select',[]).directive("select", function() {
    return {
      restrict: "E",
      require: "?ngModel",
      scope: false,
      link: function (scope, element, attrs, ngModel) {

        if (!ngModel) {
          return;
        }

        element.bind("change", function() {
            //Fix for IE9 where it is not able to properly handle dropdown value change
            //The fix is to rip out the dropdown from DOM and add it back at the same location
            if (isIE9){
                this.parentNode.insertBefore(this, this);   //this rips the elements out of the DOM and replace it into the same location.
            }
        })
      }
   }
});

这种方式修复适用于项目中的所有select元素,您不必更改任何现有的HTML标记。我还使用以下方法检测IE版本以将isIE9变量设置为true

var Browser = {
    IsIE: function () {
        return navigator.appVersion.indexOf("MSIE") != -1;
    },
    Navigator: navigator.appVersion,
    Version: function() {
        var version = 999; // we assume a sane browser
        if (navigator.appVersion.indexOf("MSIE") != -1)
            // bah, IE again, lets downgrade version number
            version = parseFloat(navigator.appVersion.split("MSIE")[1]);
        return version;
    }
};

var oldIE = false;      //Global Variable
var isIE9 = false;      //Global Variable
if (Browser.IsIE && Browser.Version() <= 8) {
    oldIE = true;
}

if (Browser.IsIE && Browser.Version() == 9) {
    isIE9 = true;
}

答案 9 :(得分:0)

我不得不改变范围。$ watch to scope。$ watchCollection使@kkurni解决方案在IE9上工作。只是想帮助那些在IE9中仍有问题的人,以便在他们改变时呈现选择选项。

答案 10 :(得分:0)

如果更改某些属性,渲染会更新并同步。无害的更改可能是将selectedIndex属性设置为其自己的值:

function fixIEselect() {
    for (var nForm = 0; nForm < document.forms.length; ++nForm) {
        var form = document.forms[nForm];
        var children = form.children;
        for (var nChild = 0; nChild < children.length; ++nChild) {
            var child = children.item(nChild);
            if (child.tagName == "SELECT") {
                alert("Fixed: " + child.name);
                child.selectedIndex = child.selectedIndex; // dummy nop but not
            }
        }
    }
}

fixIEselect();

答案 11 :(得分:0)

添加动态选项后,执行控制重新呈现的成本较低。 因此,不是在下拉列表中插入/删除虚拟元素,而是可以重置导致控制呈现的CSS样式,例如

selElement.style.zoom = selElement.style.zoom ? "" : 1;

答案 12 :(得分:0)

我有一个IE选项列表问题的解决方法

修复前:http://plnkr.co/edit/NGwG1LUVk3ctGOsX15KI?p=preview

修复后:http://plnkr.co/edit/a7CGJavo2m2Tc73VR28i?p=preview

$("select").click(function(){
  $(this).append('<option></option>');
   $(this).find('option:last').remove();

});

我刚为dom添加了虚拟选项以重新渲染选择并将其删除。 让我知道它适合你