るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.021秒)
トップページ > バージョン:2.6.0[x] > クエリ:attributes[x] > ライブラリ:rexml/document[x] > クラス:REXML::Element[x]

別のキーワード

  1. rexml/document attributes
  2. attributes <<
  3. attributes []
  4. uri attributes
  5. attributes new

キーワード

検索結果

REXML::Element#attributes -> REXML::Attributes (54616.0)

要素が保持している属性の集合を返します。

要素が保持している属性の集合を返します。

REXML::Element#add_attributes(attrs) -> () (18349.0)

要素の属性を複数追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。

...属性の属性名と属性値の対の集合(Array or Hash)

//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("e")
e.add_attributes({"a" => "b", "c" => "d"})
e # => <e a='b' c='d'/>
e = REXML::Element.new("e")
e.add_attributes([["a", "b"], ["c", "d"]])
e # => <e a='b' c='d'/>
//}...

REXML::Element#has_attributes? -> bool (18313.0)

要素が属性を1つ以上持っていれば真を返します。

要素が属性を1つ以上持っていれば真を返します。