るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.035秒)
トップページ > クエリ:attributes[x] > クエリ:attributes_of[x]

別のキーワード

  1. rexml/document attributes
  2. attributes get_attribute_ns
  3. attributes get_attribute
  4. attributes each_attribute
  5. httprequest attributes

ライブラリ

クラス

検索結果

REXML::DocType#attributes_of(element) -> [REXML::Attribute] (24238.0)

DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。

...CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
EOS

p doctype.attributes_of("book")
# => [author='', title='', publisher='foobar publisher']
p doctype.attributes_of("book")[0].name # => "author"
p doctype.attributes_of("book")[0].value # => ""
//}...