るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. tracer add_filter
  2. rexml/document add
  3. logger add
  4. openssl add_extension
  5. socket ip_add_membership

クラス

検索結果

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

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

...属性を指定します。

@param attrs 追加する属性の属性名と属性値の対の集合(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([...