javascript - In XML, can you start a CDATA tag with <? -
my javascript application interfaces , obtains xml contains cdata. when dealing cdata aware should similar this:
however receiving inside xml:
<text><![cdata[ hello .... thanks. ]]></text> currently not work , cannot tell if cdata or not.
basically question can start , end cdata tags < , > instead of < , >
thanks.
it not cdata. text.
< means "a less character". < means "start of tag/directive/etc"
Comments
Post a Comment