Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. Element
  4. attributes property
attributes
description

attributes property

Map<String,String> getattributes

All attributes on this element.

Any modifications to the attribute map will automatically be applied tothis element.

This only includes attributes which are not in a namespace(such as 'xlink:href'), additional attributes can be accessed viagetNamespacedAttributes.

Implementation

Map<String, String> get attributes => new _ElementAttributeMap(this);
setattributes(Map<String,String>value)

Implementation

set attributes(Map<String, String> value) {  Map<String, String> attributes = this.attributes;  attributes.clear();  for (String key in value.keys) {    attributes[key] = value[key]!;  }}
  1. Dart
  2. dart:html
  3. Element
  4. attributes property
Element class

[8]ページ先頭

©2009-2025 Movatter.jp