2件ヒット
[1-2件を表示]
(0.044秒)
別のキーワード
クラス
-
REXML
:: Attribute (1) -
REXML
:: Element (1)
検索結果
先頭2件
-
REXML
:: Element # attribute(name , namespace = nil) -> REXML :: Attribute | nil (64081.0) -
name で指定される属性を返します。
...場合は nil を返します。
@param name 属性名(文字列)
@param namespace 名前空間のURI(文字列)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att=... -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (63457.0) -
属性の名前空間の URI を返します。
...間でなく、arg という名前空間
の URI が返されます。
通常は省略します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attrib...