⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 104849892c02001c10ab84b68de33425

📁 Internet 开发技术分章节代码和自己完成的课程设计全代码(在zuoye文件夹里)使用时
💻
字号:
<%@page contentType="text/html" pageEncoding="GB2312"%>

<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<html>
      <head>
         <title>JSTL与XML解释</title>
   </head>
   <body>
       <x:parse var="xmlbody">
        <customer>
           <customerid>2002</customerid>
     <customername>tea</customername>
     </customer>
    </x:parse>
    <b><u>解释XML本体内容</u></b><br>
    客户编号(customerid):
    <x:out select="$xmlbody/customer/customerid"/><br>
    客户姓名(customername):
    <x:out select="$xmlbody/customer/customername" /><br>
    
   </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -