可以帮我吗?
我需要在我的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>
当我单击按钮时,什么也没发生。
谢谢大家的帮助。