关于jQuery.each的另一个问题
jQuery("div").each(function(){
jQuery("p").append("<br/>"+this.id+" "+this.innerText);
});
预期:
un solo
deux duo
...
意外的:
un undefined
deux undefined
为什么chrome获取this.innerText而firefox不能?这是一个错误吗?
似乎与较晚的firefox版本有关。
任何替代方案?先谢谢。