http://bbs.itcast.cn/thread-11616-1-1.html
看样子还是经验者比较有办法
yii自带的testdrvie的contact页面里有个验证码的例子,可惜点击旁边的刷新链接来更新验证码并不符合大多数人都的习惯,貌似都是点击图片来更新的
<?php $this->widget('CCaptcha'); ?>
改成
<?php
$this->widget('CCaptcha',array('showRefreshButton'=>false,'clickableImage'=>true,'imageOptions'=>array('alt'=>'点击换图','title'=>'点击换图','style'=>'cursor:pointer'))); ?>
看样子还是经验者比较有办法
yii自带的testdrvie的contact页面里有个验证码的例子,可惜点击旁边的刷新链接来更新验证码并不符合大多数人都的习惯,貌似都是点击图片来更新的
<?php $this->widget('CCaptcha'); ?>
改成
<?php
$this->widget('CCaptcha',array('showRefreshButton'=>false,'clickableImage'=>true,'imageOptions'=>array('alt'=>'点击换图','title'=>'点击换图','style'=>'cursor:pointer'))); ?>