YUI 相当于下面的 JavaScript 代码是什么?
document.getElementById("myDiv").removeAttribute("id");
YUI 相当于下面的 JavaScript 代码是什么?
document.getElementById("myDiv").removeAttribute("id");
我猜你的意思是YUI2。但如果你指的是 YUI3,它与 DOM 方法完全一样:
Y.one('#myDiv').removeAttribute('someAttribute');
您可以在 API 文档中阅读所有 Y.Node 方法的列表:http: //yuilibrary.com/yui/docs/api/classes/Node.html
YUI2没有这个,但如下:
http://developer.yahoo.com/yui/docs/YAHOO.util.Dom.html#method_getAttribute http://developer.yahoo.com/yui/docs/YAHOO.util.Dom.html#method_setAttribute
编辑:你为什么不喜欢 removeAttribute?它已完全支持跨浏览器:http://www.quirksmode.org/dom/w3c_core.html#t118
YAHOO.util.Dom.get("myDiv").removeAttribute("id");