jquery – 获取错误:对象不支持属性或方法’assign’

前端之家收集整理的这篇文章主要介绍了jquery – 获取错误:对象不支持属性或方法’assign’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的wordpress网站上使用这个jquery弹出插件 from this link。所有浏览器都可以正常工作,但在IE11上发生以下错误

任何帮助深表感谢。

解决方法

正如其他人所提到的, Object.assign()方法在IE中不被支持,但是有一个polyfill可用,只是将它包含在你的插件声明之前:
if (typeof Object.assign != 'function') {
  Object.assign = function(target) {
    'use strict';
    if (target == null) {
      throw new TypeError('Cannot convert undefined or null to object');
    }

    target = Object(target);
    for (var index = 1; index < arguments.length; index++) {
      var source = arguments[index];
      if (source != null) {
        for (var key in source) {
          if (Object.prototype.hasOwnProperty.call(source,key)) {
            target[key] = source[key];
          }
        }
      }
    }
    return target;
  };
}

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign

测试页:http://jsbin.com/pimixel/edit?html,output(只需删除polyfill,以获得与您的页面上相同的错误)。

原文链接:https://www.f2er.com/jquery/181826.html

猜你在找的jQuery相关文章