value=( val )
Instance Public methods
Sets the contents of this text node. This expects the text to be unnormalized. It returns self.
1 2 3 4 | e = Element. new ( "a" ) e.add_text( "foo" ) # <a>foo</a> e[ 0 ].value = "bar" # <a>bar</a> e[ 0 ].value = "<a>" # <a><a></a> |
Please login to continue.