当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii -AutoComplete 表单自动提示实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-17 10:47:40 浏览: 评论:0 

CJuiAutoComplete 在用户输入时可以根据用户输入的前几个字符自动提示用户可以输入的文字,它封装了 JUI autocomplete插件,基本用法如下.

controller层代码如下:

  1. class SiteController extends Controller 
  2.  
  3.  
  4.  public function actionIndex() 
  5.  
  6.  { 
  7.  
  8.  $data=array(‘Nanjing’, ‘Beijing’, ‘Perth’, 
  9.  
  10. ‘Chicago’,'Paris’,'Pengnai’,'Sydney’); 
  11.  
  12.  $this->render(‘index’, array
  13.  
  14.  ‘data’ => $data
  15.  
  16.  )); 
  17.  
  18.  } 
  19.  

view层代码如下:

  1. <?php 
  2.  
  3. $this->widget(‘zii.widgets.jui.CJuiAutoComplete’, array
  4.  
  5. ‘name’=>’city’, 
  6.  
  7. ’source’=>$data
  8.  
  9. ‘options’=>array
  10.  
  11.  ‘minLength’=>’1′,//设置文本框中有最少有几个字符的时候开始提示 
  12.  
  13.  ), 
  14.  
  15.  ‘htmlOptions’=>array
  16.  
  17.  ’style’=>’height:20px;’ 
  18.  
  19.  ), 
  20.  
  21. )); 
  22.  
  23. ?> 

Tags: AutoComplete 自动提示实例

分享到: