属性 属性
此元素上所有属性。
对属性映射的任何修改都将自动应用到此元素上。
这仅包括不在命名空间中的属性(例如 'xlink:href'),其他属性可以通过 getNamespacedAttributes 访问。
实现
Map<String, String> get attributes => new _ElementAttributeMap(this);
实现
set attributes(Map<String, String> value) {
Map<String, String> attributes = this.attributes;
attributes.clear();
for (String key in value.keys) {
attributes[key] = value[key]!;
}
}