我有以下XHTML:
是否可以使用javascript访问自定义属性?我有代表跨度的元素.做myElement.att
不行,我无法弄清楚如何指定命名空间?
通常情况下,您可以直接访问它,即element.attribute
命名空间稍微复杂化为:
element.getAttribute("namespace:attribute") //the nuclear x-browser option
所以,为了真正清楚,这将是这样的:
document.getElementById('myid').getAttribute('cus:att')