products.xml

来自「The purpose of this code is to assist de」· XML 代码 · 共 35 行

XML
35
字号
<?xml version="1.0" encoding="utf-8" ?>
<!-- in this implementation, the order of the product items (name, price, shipping) is important -->
<products>
  <product>
    <product_id>1</product_id>
    <name>Product #1</name>
    <price>13.00</price>
    <shipping>3.00</shipping>
    <handling>.50</handling>
    <picture>product1.jpg</picture>
    <description>describing product 1</description>
    <taxable>true</taxable>
  </product>
  <product>
    <product_id>2</product_id>
    <name>Product #2</name>
    <price>10.00</price>
    <shipping>3.00</shipping>
    <handling>.50</handling>
    <picture>product2.jpg</picture>
    <description>describing product 2</description>
    <taxable>true</taxable>
  </product>
  <product>
    <product_id>3</product_id>
    <name>Product #3</name>
    <price>11.00</price>
    <shipping>3.00</shipping>
    <handling>.50</handling>
    <picture>product3.jpg</picture>
    <description>describing product 3</description>
    <taxable>true</taxable>
  </product>
</products>

⌨️ 快捷键说明

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