WML <wml> 标签

WML <wml> 标签用于定义 WML 卡片组并包含卡片和文档的其他元素。

<wml> 元素的用途与 <html> 元素在 HTML 页面中的用途非常相似。

属性:

<wml> 元素支持以下属性:

属性描述
xml:langlanguage_code设置元素中使用的语言
classclass data设置元素的类名。
idelement ID元素的唯一 ID。

示例:

以下示例显示了该元素的用法:

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
"http://www.wapforum.org/DTD/wml12.dtd">

<wml>

<card id="one" title="First Card">
<p>
This is the first card in the deck
</p>
</card>

<card id="two" title="Second Card">
<p>
Ths is the second card in the deck
</p>
</card>

</wml>