如何滚动页面以显示错误消息?

时间:2013-12-25 10:49:52

标签: twitter-bootstrap yii

过去两个月我一直在使用Yii。如何滚动页面以在Yii中显示错误消息?我正在使用引导程序小部件

widget('bootstrap.widgets.TbAlert');

1 个答案:

答案 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>