显示模态而不是回显消息

时间:2018-06-04 07:11:13

标签: php html

if (mysqli_num_rows($res_username) > 0) {
    //echo "Sorry... Username already taken";
    echo "<script>$('#RegisterModal').modal('show')</script>";
}

<div id="RegisterModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-sm">
        <div class="modal-content">
            You have sucess registered!
        </div>
    </div>
</div>

对于echo部分,我想显示一个显示弹出窗口而不是echo消息的模式。 有人帮忙吗?

1 个答案:

答案 0 :(得分:0)

将您的脚本包含在$(document).ready()中,这样只有在文档完全加载以限制失败时才会执行show命令。

<强>像:

echo "
  <script>
  $( document ).ready(function() {
  $('#RegisterModal').modal('show')
  });
  </script>";