问题 问答题

仔细阅读person.xml和person.xsl文件,回答后面的问题。person.xml:<xml version="1.0"encoding="gb2312"><!--File Name:person.xml--><Xml-stylesheet type="text/xsl"href="person.Xsl"><persons> <person><name>张明</name><code>008</code><E-mail>zhangming@hotmail.com</E-mail><score1>98</score1> </person> </persons> person.xsl: <xml version="1.0"encoding="gb2312"> <!--File Name:person.Xsl--> <xsl:stylesheet xmlns:xsl="http:∥www.w3.org/TR/WD-xsl"> <xsl:template match="/"> <xsl:for-each select="persons/person"> <table border="1"><tr><td> <span style="fom-weight:bold;color:black">姓名:</span> <xsl:value-of select="name"/><br/> <span style="font-weight:bold;color:black">编号:</span> <xsl:value-of select="code"/><br/> <span style="font-weight:bold;color:black">电子邮件:</span> <xsl:value-of select="E-mail"/><br/> <span style="font-weight:bold;color:black">成绩1:</span> <xsl:value-of select="scorel"/><br/></td></tr></table><br/><br/></xsl:for-each></xsl:template></xsl:stylesheet>问题:

给出person.xml在浏览器中的解释结果。(4分)

答案

参考答案:[*]C:\Documents and Settings\Administrator\My Documents\图片\15.jpg

单项选择题
翻译题