使用Java脚本在div中更改文本(PHP包含)

时间:2018-09-12 11:52:56

标签: javascript php html

可以帮我吗?

我需要在我的php文件index.php中更改代码

来自

<?php include 'assets/php/cms/addon/calendar.php' ?> 

<?php include 'assets/php/cms/addon/test.php' ?> 

使用javascript在div元素中。

PHP

            <div id="change">
               <?php include 'assets/php/cms/addon/calendar.php' ?>  
            </div>

JavaScript

    <script type="text/javascript">

    function myFunction() {
            document.getElementById("change").innerHTML = "<?php include 'assets/php/cms/addon/calendar123456.php' ?>"; 
}

    </script>

按钮

<button onclick="myFunction()">Change php include</button>

当我单击按钮时,什么也没发生。

谢谢大家的帮助。

0 个答案:

没有答案