为什么使用 setAttribute 设置的 onclick 属性无法在 IE 中工作?

IT技术 javascript internet-explorer
2021-01-19 14:38:00

今天遇到这个问题,发帖以防其他人遇到同样的问题。

var execBtn = document.createElement('input');
execBtn.setAttribute("type", "button");
execBtn.setAttribute("id", "execBtn");
execBtn.setAttribute("value", "Execute");
execBtn.setAttribute("onclick", "runCommand();");

原来要让 IE 在动态生成的元素上运行 onclick,我们不能使用 setAttribute。相反,我们需要使用一个匿名函数来设置对象的 onclick 属性,该函数封装了我们想要运行的代码。

execBtn.onclick = function() { runCommand() };

坏主意:

你可以做

execBtn.setAttribute("onclick", function() { runCommand() });

但根据@scunliffe,它将在非标准模式下在 IE 中中断。

你根本不能这样做

execBtn.setAttribute("onclick", runCommand() ); 

因为它立即执行,并将runCommand()的结果设置为onClick属性值,你也做不到

execBtn.setAttribute("onclick", runCommand);
6个回答

要在 FF 和 IE 中进行此工作,您必须同时编写:


    button_element.setAttribute('onclick','doSomething();'); // for FF
    button_element.onclick = function() {doSomething();}; // for IE

感谢这篇文章

UPDATE:这是证明有时必须使用的setAttribute!如果您需要从 HTML 中获取原始 onclick 属性并将其添加到 onclick 事件,则此方法有效,以便它不会被覆盖:

// get old onclick attribute
var onclick = button_element.getAttribute("onclick");  

// if onclick is not a function, it's not IE7, so use setAttribute
if(typeof(onclick) != "function") { 
    button_element.setAttribute('onclick','doSomething();' + onclick); // for FF,IE8,Chrome

// if onclick is a function, use the IE7 method and call onclick() in the anonymous function
} else {
    button_element.onclick = function() { 
        doSomething();
        onclick();
    }; // for IE7
}
button_element.onclick = function().. 适用于 IE 和 Firefox。就此而言,它也适用于 Opera、Safari 和 Chrome。需要 setAttribute 的任何原因(对于 Firefox)?
2021-03-13 14:38:00
但是getAttribute/ setAttributethere 有什么好处呢?使用.onclick属性而不是 get 和 set 都适用于所有浏览器,并且不会引入麻烦的范围差异。
2021-03-17 14:38:00
@bobince - 我更新了这个答案以证明在某些情况下您需要使用 setAttribute。在 IE8+、FF、Chrome 中,getAttribute("onclick") 返回一个字符串,而在 IE7 中,该字符串包含在一个函数中,必须使用 onclick() 调用;
2021-03-25 14:38:00
这种onclick方式在 FF 和 IE 中都可以正常工作。没有理由使用该setAttribute版本。
2021-04-06 14:38:00
这仍然相关吗?
2021-04-06 14:38:00

有一个你的属性集合不能在IE中设置使用.setAttribute() 其中包括每一个内联事件处理程序。

详情请看这里:

http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html

效果很好!

现在似乎没有必要使用这两种方式:

execBtn.onclick = function() { runCommand() };

显然适用于每个当前的浏览器。

在当前的 Firefox、IE、Safari、Opera、Chrome 中在 Windows 上进行测试;Ubuntu 上的 Firefox 和 Epiphany;未在 Mac 或移动系统上测试。

  • 克雷格:我会尝试“document.getElementById(ID).type='password';
  • 有没有人检查过不同引擎的“AddEventListener”方法?

这是跨浏览器兼容事件绑定的惊人功能。

http://js.isite.net.au/snippets/addevent得到它

有了它,您就可以做到Events.addEvent(element, event, function);无忧无虑!

例如:(http://jsfiddle.net/Zxeka/

function hello() {
    alert('Hello');
}

var button = document.createElement('input');
button.value = "Hello";
button.type = "button";

Events.addEvent(input_0, "click", hello);

document.body.appendChild(button);

这是函数:

// We create a function which is called immediately,
// returning the actual function object.  This allows us to
// work in a separate scope and only return the functions
// we require.
var Events = (function() {

  // For DOM2-compliant browsers.
  function addEventW3C(el, ev, f) {
    // Since IE only supports bubbling, for
    // compatibility we can't use capturing here.
    return el.addEventListener(ev, f, false);
  }

  function removeEventW3C(el, ev, f) {
    el.removeEventListener(ev, f, false);
  }

  // The function as required by IE.
  function addEventIE(el, ev, f) {
    // This is to work around a bug in IE whereby the
    // current element doesn't get passed as context.
    // We pass it via closure instead and set it as the
    // context using call().
    // This needs to be stored for removeEvent().
    // We also store the original wrapped function as a
    // property, _w.
    ((el._evts = el._evts || [])[el._evts.length]
        = function(e) { return f.call(el, e); })._w = f;

    // We prepend "on" to the event name.
    return el.attachEvent("on" + ev,
        el._evts[el._evts.length - 1]);
  }

  function removeEventIE(el, ev, f) {
    for (var evts = el._evts || [], i = evts.length; i--; )
      if (evts[i]._w === f)
        el.detachEvent("on" + ev, evts.splice(i, 1)[0]);
  }

  // A handler to call all events we've registered
  // on an element for legacy browsers.
  function addEventLegacyHandler(e) {
    var evts = this._evts[e.type];
    for (var i = 0; i < evts.length; ++i)
      if (!evts[i].call(this, e || event))
        return false;
  }

  // For older browsers.  We basically reimplement
  // attachEvent().
  function addEventLegacy(el, ev, f) {
    if (!el._evts)
      el._evts = {};

    if (!el._evts[ev])
      el._evts[ev] = [];

    el._evts[ev].push(f);

    return true;
  }

  function removeEventLegacy(el, ev, f) {
    // Loop through the handlers for this event type
    // and remove them if they match f.
    for (var evts = el._evts[ev] || [], i = evts.length; i--; )
      if (evts[i] === f)
        evts.splice(i, 1);
  }

  // Select the appropriate functions based on what's
  // available on the window object and return them.
  return window.addEventListener
      ? {addEvent: addEventW3C, removeEvent: removeEventW3C}
      : window.attachEvent
          ? {addEvent: addEventIE, removeEvent: removeEventIE}
          : {addEvent: addEventLegacy, removeEvent: removeEventLegacy};
})();

如果你不想使用这么大的功能,这应该适用于几乎所有浏览器,包括 IE:

if (el.addEventListener) { 
    el.addEventListener('click', function, false); 
} else if (el.attachEvent) { 
    el.attachEvent('onclick', function); 
} 

回答克雷格的问题。您将不得不创建一个新元素并复制旧元素的属性。这个功能应该做的工作:(来源

function changeInputType(oldObject, oType) {
  var newObject = document.createElement('input');
  newObject.type = oType;
  if(oldObject.size) newObject.size = oldObject.size;
  if(oldObject.value) newObject.value = oldObject.value;
  if(oldObject.name) newObject.name = oldObject.name;
  if(oldObject.id) newObject.id = oldObject.id;
  if(oldObject.className) newObject.className = oldObject.className;
  oldObject.parentNode.replaceChild(newObject,oldObject);
  return newObject;
}

或者您可以使用 jQuery 并避免所有这些问题:

var execBtn = $("<input>", {
       type: "button",
       id: "execBtn",
       value: "Execute"
    })
    .click(runCommand);        

jQuery 也会处理所有跨浏览器问题。