[
Lists Home |
Date Index |
Thread Index
]
- From: Eric Bohlman <ebohlman@netcom.com>
- To: Hokkun Pang <hpang@flycast.com>
- Date: Fri, 5 Nov 1999 16:38:12 -0800 (PST)
On Fri, 5 Nov 1999, Hokkun Pang wrote:
> I have read the DOM level 1 a couple times but I simply don't
> see the API for accessing the entity value.
> Suppose I am parsing this:
>
> <email>abc@yahoo.com</email>
>
> which API should I use to get the 'abc@yahoo.com'?
"abc@yahoo.com" is the value ('data' property) of a Text node which is the
first child of the Element node whose tagName is 'email'), so assuming
that MyElement is the Element node, you'd access the value (FSVO language
binding) as MyElement.firstChild.data.
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo@ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|