沒有字首的屬性名稱
元素和屬性在預設名稱空間方面的行為不同。這往往是混亂的根源。
名稱沒有字首的屬性不在名稱空間中,當預設名稱空間在範圍內時也是如此。
<?xml version="1.0"?>
<foo attr="value" xmlns="http://www.example.com/my-namespace">
<!-- The attribute attr is in no namespace, even though
a default namespace is in scope. The element foo,
however, is in the default namespace. -->
</foo>