yii模板中的label标签
<?php echo $form->labelEx($model,'name'); ?>
编译后:
<label for="Project_name" class="required">项目名称 <span class="required">*</span></label>
yii模板中的文本标签

<?php echo $form->textField($model,'name',array('size'=>60,'maxlength'=>128)); ?>

编译后:

<input size="60"
maxlength="128" name="Project[name]" id="Project_name"
type="text">
yii模板中的error标签
<?php echo
$form->error($model,'name'); ?>
编译后:
<div
class="errorMessage">{变量}</div>
yii模板中的textarea标签
<?php echo
$form->textArea($model,'description',array('rows'=>6,
'cols'=>50)); ?>
编译后:
<textarea rows="6" cols="50"
name="Project[description]" id="Project_description"
class="error"></textarea>
yii模板中的hidden标签
<?php echo
$form->hiddenField($model,'create_time',array('value'=>time()));
?>
编译后:
<input value="1376475100"
name="Project[create_time]" id="Project_create_time"
type="hidden">
yii模板中的password标签
<?php echo
$form->passwordField($model,'password');
?>
编译后:
<input name="Project[password]" id="Project_password"
type="password">
yii模板中的url标签
<?php echo
$form->urlField($model,'url');
?>
编译后:
<input name="Project[url]" id="Project_url"
type="url">
yii模板中的radio标签
<?php echo
$form->radioButtonList($model, 'update_time',
array('1'=>'分页','0'=>'不分页'));
?>
编译后:
<input id="ytProject_update_time" type="hidden"
value="" name="Project[update_time]">
<span
id="Project_update_time"><input
id="Project_update_time_0" value="1" type="radio"
name="Project[update_time]"> <label
for="Project_update_time_0">分页</label><br>
<input id="Project_update_time_1" value="0"
type="radio"
name="Project[update_time]"> 
<label
for="Project_update_time_1">不分页</label></span>
yii模板中的file标签
<?php echo
$form->fileField($model, 'update_time');
?>
编译后:
<input id="ytProject_update_time" type="hidden"
value="" name="Project[update_time]">
<input name="Project[update_time]"
id="Project_update_time" type="file">
yii模板中的button标签
<?php echo
CHtml::submitButton($model->isNewRecord ? '创建' :
'保存'); ?>
编译后:
<input type="submit" name="yt0"
value="创建">
yii模板中的checkBox标签
<?php echo
$form->checkBox($model,
'update_time',array('checked'=>'checked'));
?>
编译后:
<input id="ytProject_update_time" type="hidden"
value="0" name="Project[update_time]">
<input checked="checked"
name="Project[update_time]" id="Project_update_time" value="1"
type="checkbox">
yii模板中的select标签
<?php echo
$form->dropDownList($model, 'update_time',
array('1'=>'分页','0'=>'不分页'));
?>
编译后:
<select name="Project[update_time]"
id="Project_update_time">
<option
value="1">分页</option>
<option
value="0">不分页</option>
</select>
yii模板中的select标签
<?php echo
$form->listBox($model, 'update_time',
array('1'=>'分页','0'=>'不分页'));
?>
编译后:
<select size="4" name="Project[update_time]"
id="Project_update_time">
<option
value="1">分页</option>
<option
value="0">不分页</option>
</select>
yii模板中的checkbox标签
<?php echo
$form->checkBoxList($model, 'update_time',
array('1'=>'分页','0'=>'不分页'));
?>
编译后:
<input id="ytProject_update_time" type="hidden"
value=""
name="Project[update_time]"><span
id="Project_update_time"><input
id="Project_update_time_0" value="1" type="checkbox"
name="Project[update_time][]"> <label
for="Project_update_time_0">分页</label><br>
<input id="Project_update_time_1" value="0"
type="checkbox" name="Project[update_time][]">
<label
for="Project_update_time_1">不分页</label></span>
yii模板中的date标签
 <?php echo
$form->dateField($model, 'update_time');
?>
编译后:
<input name="Project[update_time]"
id="Project_update_time"
type="date">
yii模板中的number标签
<?php echo
$form->numberField($model, 'number');
?>
编译后:
<input name="Project[number]" id="Project_number"
type="number">
yii模板中的email标签
<?php echo
$form->emailField($model, 'email');
?>
编译后:
<input name="Project[email]" id="Project_email"
type="email">
yii模板中的label标签
 <?php echo
$form->label($model, 'update_time');
?>
编译后:
<label
for="Project_update_time">更新时间</label>
 

yii 标签用法(模板)的更多相关文章

  1. Yii系列总结:yii 标签用法

    yii 常用标签:label标签.文本标签.error标签.textarea标签.hidden标签.password标签.url标签.radio标签.file标签.button标签.checkBox标 ...

  2. ThinkPHP模板IF标签用法详解

    投稿:shichen2014 字体:[增加 减小] 类型:转载 时间:2014-07-01 我要评论 这篇文章主要介绍了ThinkPHP模板IF标签用法,需要的朋友可以参考下 ThinkPHP的IF标 ...

  3. Thinkphp中的内置标签用法

    Thinkphp中的内置标签有:Volist,Foreach,For,Switch,比较标签,范围判断标签,IF,Present,Empty,Defined,Assign,Define,标签嵌套,im ...

  4. H5 新标签用法及解释

    HTML 5 是一个新的网络标准,目标在于取代现有的 HTML 4.01, XHTML 1.0 and DOM Level 2 HTML 标准.它希望能够减少浏览器对于需要插件的丰富性网络应用服务(p ...

  5. 【JSP】<meta>标签用法

    转载自:http://blog.sina.com.cn/s/blog_65c74cce0102v39z.html  非常感谢这位博主,急着用,改日再细细品味重新整理这篇博文. http-equiv M ...

  6. Web前端设计:Html强制不换行<nobr>标签用法代码示例

    在网页排版布局中比如文章列表标题排版,无论多少文字均不希望换行显示,需要强制在一行显示完内容.这就可以nobr标签来实现.它起到的作用与word-break:keep-all 是一样的.nobr 是 ...

  7. JAVA中的break[标签]continue[标签]用法

    原文:JAVA中的break[标签]continue[标签]用法 注意:JAVA中的标签必须放在循环之前,且中间不能有其他语句.例如:tag:for或while或do--while; 1.使用brea ...

  8. c-fmt-fn标签用法

      c-fmt-fn标签用法 CreateTime--2017年1月6日15:48:43 Author:Marydon 一.参考链接 http://blog.csdn.net/fmwind/artic ...

  9. Django项目中模板标签及模板的继承与引用【网站中快速布置广告】

    Django项目中模板标签及模板的继承与引用 常见模板标签 {% static %} {% for x in range(x) %}{% endfor %} 循环的序号{% forloop %} 循环 ...

随机推荐

  1. 【Cocos2d-X开发学习笔记】第26期:游戏背景之滚动地图背景(CCParallaxNode)的使用

    本系列学习教程使用的是cocos2d-x-2.1.4(最新版为3.0alpha0-pre) ,PC开发环境Windows7,C++开发环境VS2010 在现实生活中,当我们身处一辆快速行驶的车上,用眼 ...

  2. multipath.conf

    # This is a basic configuration file with some examples, for device mapper# multipath.# For a comple ...

  3. android里Toast的用法

    在活动中,可以通过findViewById()方法获取到在布局文件中定义的元素,这里我们传入R.id.button_1,来得到按钮的实例,这个值是刚才在first_layout.xml中通过andro ...

  4. ISAP 简介

    刘汝佳的蓝书上已经给出了大部分,先给上完整代码(以草地排水为例). #include<iostream> #include<algorithm> #include<cst ...

  5. AS3 Graphics 多次绘制

    AS3中 Sprite和Shape类都持有一个Graphics对象,利用Graphics对象可以方便的利用内置的绘图方法绘制一些简单的图形. 之前在游戏中做新手引导的时候利用显示对象的BlendMod ...

  6. 第十四章 红黑树——C++代码实现

    红黑树的介绍 红黑树(Red-Black Tree,简称R-B Tree),它一种特殊的二叉查找树.红黑树是特殊的二叉查找树,意味着它满足二叉查找树的特征:任意一个节点所包含的键值,大于等于左孩子的键 ...

  7. Java多态性举例说明

    Java多态性的概念也可以被说成“一个接口,多个方法”. (一)相关类 class A ...{ public String show(D obj)...{ return ("A and D ...

  8. 自定义控件(视图)2期笔记08:自定义控件之 9patch图说明

    1. 何为 9patch图 ?     它是一个对png图片做处理的一个工具,能够为我们生成一个"*.9.png"的图片:所谓"*.9.png"这是Androi ...

  9. 9.6noip模拟试题

    题目名称 盘子序列 四轮车 点名 提交文件 disk.pas/c/cpp car.pas/c/cpp rollcall.pas/c/cpp 输入文件 disk.in car.in rollcall.i ...

  10. javaScript获取指定的cookie值

    1.获取cookie的函数 function getCookie(cookieName) { var strCookie = document.cookie; var arrCookie = strC ...