我有一个简单的 php if 语句,它基本上检查表单提交上的错误返回。
<?php if ($this->session->flashdata('error')): ?>
<a href="#" class="close" data-dismiss="alert">×</a>
<div class="alert alert-error" id="error"><?php echo $this->session->flashdata('error'); ?></div>
<?php endif ?>
我有这个脚本,我想把它放到这个 php 中,所以当 php 为 true 时,登录框或account-container
会摇晃。
$("#account-container").addClass("animated shake");
我尝试在 php 中回显脚本,但是当 if 为真时,所有给我的内容都echo ;
显示在页面上。