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. 图论(差分约束系统):POJ 1201 Intervals

    Intervals Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 24099   Accepted: 9159 Descri ...

  2. JQuery固定表头插件fixedtableheader源码注释

    在开发XX车站信息系统时,需要将大量数据显示在一个巨大的表格内部,由于表格是一个整体,无法分页,加之数据很多,超出一屏,为了方便用户,决定使用固定表头的插件,经过测试,发现JQuery 插件:fixe ...

  3. UVa11419 SAM I AM(构造最小点覆盖)

    题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=27475 [思路] 二分图的最小点覆盖以及构造最小覆盖. 二分图的最 ...

  4. LeetCode (85): Maximal Rectangle [含84题分析]

    链接: https://leetcode.com/problems/maximal-rectangle/ [描述] Given a 2D binary matrix filled with '0's ...

  5. Necklace of Beads

    http://poj.org/problem?id=1286 // File Name: poj1286.cpp // Author: bo_jwolf // Created Time: 2013年1 ...

  6. set和replace方法的区别

    对已有值的元素处理上两者是相同的,但是对于一个不存在的元素,set的作用就和add相当,replace则是只能对已经存在的元素进行处理如:表中某个字段值是空(null),如果某个字段为空,则通过查询方 ...

  7. JQ滑动导航菜单的实现

    前言:不多说直接看效果!!! 这样的菜单我们在一般的网站上见到的也比较多,有比较好的用户体验!   原理:这个很重要,任何的特效只要原理搞明白了,实现起来都是很容易的!这个特效的原理很简单,菜单的样式 ...

  8. 第一篇:数据工程师眼中的智能电网(Smart Grid)

    前言 想必第一次接触到智能电网这个概念的人,尤其是互联网从业者,都会顾名思义的将之理解为"智能的电网". 然而智能电网中的"智能"是广义上的智能,它就是指更好的 ...

  9. [转] Linux中gcc,g++常用编译选项

    http://blog.sina.com.cn/s/blog_5ff2a8a201011ro8.html gcc/g++ 在执行编译时,需要4步 1.预处理,生成.i的文件[使用-E参数] 2.将预处 ...

  10. 体验Impress.js

    用腻了ppt,prezi的风格看起来更酷一点儿,无意中得知有Impress.js这么一个H5版的prezi,nice,值得一试. 关于Impress.js,网上教程很多,但说实话就跟教小朋友一样,一步 ...