网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: WAP :: WML < template >标签

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

WML < template >标签


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-29 浏览:714 :: ::

The <template> tag defines a template for all the cards in a deck. The "code" in the <template> tag is added to each card in the deck. 
<template>标签为平台中所有的卡片定义了一套模板。<template>标签中的"code[代码]"将被添加到平台中的每个卡片中。

Note: You can specify only one <template> tag for each deck. 
注意:你仅能为每个平台指定一个<template>标签。

Note: This tag can only contain <do> and <onevent> tags. 
注意:这个标签仅能包含<do> 和 <onevent>标签。

Syntax
语法

<template>
..<do>..
..<onevent>..
</template>

Attributes
属性

属性 描述
onenterbackward url Occurs when the user navigates into a card using a "prev" task
指定浏览前面内容的url
onenterforward url Occurs when the user navigates into a card using a "go" task
指定浏览后面内容的url
ontimer url Occurs when the "timer" expires
指定当“计时器”过期时产生的url
class cdata Sets a class name for the element. The class name is case sensitive. An element can be connected to multiple classes. Multiple class names within the class attribute are separated by white space
为元素设置一个类名称。类名称是字母大小写不敏感的。一个元素可以被连接到多个类中。类属性中的多个类名称是通过空白符进行分隔的
id id Sets a unique name for the element
为元素设置一个独立的名称

Examples
案例

下面的案例通过使用<do>标签将一个“back”连接添加到每个卡片中:
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<template>
 <do type="prev" label="Back">
  <prev/>
 </do>
</template>
<card id="card1" title="Card 1">
<p>
 <a href="#card2">Go to Card 2</a>
</p>
</card>
<card id="card2" title="Card 2">
<p>
 <a href="#card3">Go to Card 3</a>
</p>
</card>
<card id="card3" title="Card 3">
<p>
 Hello W3POP!
</p>
</card>
</wml> 

评论 (0) All