过去两个月我一直在使用Yii。如何滚动页面以在Yii中显示错误消息?我正在使用引导程序小部件
widget('bootstrap.widgets.TbAlert');
答案 0 :(得分:1)
您应该生成具有特定ID的警报
<?php
Yii::app()->user->setFlash(TbHtml::ALERT_COLOR_WARNING,'<strong>Warning!</strong> This is your warning.');
?>
<?php $this->widget('bootstrap.widgets.TbAlert',array('htmlOptions'=>array('id'=>'MyAlert'))); ?>
现在,根据您的功能使用下面的jQuery语句
<script type="text/javascript">
$("#ValidateForm").click(function(){
//on errors
$("#MyAlert").get(0).scrollIntoView();
})
</script>