爲什麼我的代碼不工作?JavaScript innerHTML include php
function _(x){
return document.getElementById(x);
}
function friends(){
_("right").innerHTML = '<?php include_once "friendlist.php";?>';
}
結果:
<!--?php include_once "friendlist.php";?-->
我怎樣才能解決呢?
你想要什麼? – 2015-04-04 07:12:15
它應該點擊加載php文件轉換爲div的朋友 – User 2015-04-04 07:13:37
使用_(「right」)。innerHTML ='<?php echo include_once「friendlist.php」;?>'; – Saty 2015-04-04 07:16:04