无法在PHP中使用Bootstrap popover

时间:2017-11-09 22:54:07

标签: javascript php html twitter-bootstrap popover

其他一些人也问了一个类似的问题,我已经看了所有的答案,但我还是有点迷失..

我试图在一些PHP生成的html中生成一个popover。我可以让pop在JS中正常工作,但是当我尝试通过PHP动态生成popover代码时,它不起作用。

听起来它确实与确保我的popover代码在所有内容加载到DOM之后加载有关,但是我已经尝试了一堆排列,我没有运气。任何帮助将不胜感激。

注意:我告诉我真的应该使用JQuery来做很多事情,但我还在学习,而且我正在努力实现这个目标.. :)

简化的HTML文件:                                     

<script>
    function showUser(p) {
            if (window.XMLHttpRequest) {
                // code for IE7+, Firefox, Chrome, Opera, Safari
                xmlhttp = new XMLHttpRequest();
            } else {
                // code for IE6, IE5
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            xmlhttp.onreadystatechange = function() {
                if (this.readyState == 4 && this.status == 200) {
                    document.getElementById("txtHint").innerHTML = this.responseText;
                }
            };

            xmlhttp.open("POST","getuser.php?p=" + p.value,true);
            xmlhttp.send();
            return false;
        }
    $(document).ready(function(){
        $('[data-toggle="popover"]').popover();
    });

</script>
</head>

<body>
<div id="formBox" class="container">
    <form method="POST" onsubmit="return showUser(this.spnd_total)">
        <input id="spnd_total" name="spnd_total" placeholder="10" type="number" autofocus>
        <input type="submit" value="Calculate!">
    </form>
</div>

<div id="txtHint" class="container">
Popover here...
<a href="#" data-toggle="popover" title="Popover Header" data-content="Some content inside the popover">This popover works!</a>
</div>

</body>
</html>

简化的PHP文件:

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>

<body>
<?php

echo "<a href=\"#\" data-toggle=\"popover\" title=\"Popover Header\" data-content=\"Some content inside the popover\">This one does not.</a>";

?>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

首先,为什么你在一个简单的php文件中有html包装和标题,它只是回应了一段html?

其次,每次更改DOM后都必须执行popover()插件。由ajax调用添加的新元素不知道插件事件。

xmlhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
       document.getElementById("txtHint").innerHTML = this.responseText;
       $('[data-toggle="popover"]').popover();
    }
};