为什么我不能将事件绑定到命名空间中的元素?

时间:2013-05-19 07:37:37

标签: javascript events xml-namespaces

我有以下代码,我想听一个鼠标点击事件,但在这种情况下什么都不会发生?

function Obj(tag){
  this.el = document.createElementNS("http://www.w3.org/1998/Math/MathML",tag);
  this.el.appendChild(document.createTextNode("cccc"));
  this.el.onclick = function(){
    alert("onclick");
  }
}
var x = new Obj("mi");
document.body.appendChild(x.el);

0 个答案:

没有答案