简体   繁体   English

如何使用内部 php 代码显示引导模式弹出窗口

[英]How to show a bootsrap modal popup using inside php code

I want to display this modal popup after php condition check我想在 php 条件检查后显示这个模态弹出窗口

<div id="myModal65" class="modal fade">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title">Subscribe our Newsletter</h4>
            </div>
            <div class="modal-body">
                <p>Subscribe to our mailing list to get the latest updates straight in your inbox.</p>
                <form>
                    <div class="form-group">
                        <input type="text" class="form-control" placeholder="Name">
                    </div>
                    <div class="form-group">
                        <input type="email" class="form-control" placeholder="Email Address">
                    </div>
                    <button type="submit" class="btn btn-primary">Subscribe</button>
                </form>
            </div>
        </div>
    </div>
</div>

in this php code used for display the popup.在这个用于显示弹出窗口的 php 代码中。 But it cannot display.但是无法显示。

<?php
    if($intwschdle==1)
           {
      echo "<script type='text/javascript'>$('#myModal65').modal('show');</script>";            
           }
?>

I think it's much better if you show you modal by default and put it in the php condition like :我认为如果默认情况下向您显示模态并将其放入 php 条件中会更好,例如:

 <?php
if($intwschdle==1){   
?>
<!--full html for modal goes here showing by default - - >
<?php  } ? >

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM