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消息的模式。 有人帮忙吗?
答案 0 :(得分:0)
将您的脚本包含在$(document).ready()中,这样只有在文档完全加载以限制失败时才会执行show命令。
<强>像:强>
echo "
<script>
$( document ).ready(function() {
$('#RegisterModal').modal('show')
});
</script>";