在html页面加载之前加载php

时间:2018-05-04 21:27:58

标签: javascript php ajax load

我想首先加载我的PHP代码以获取一些值,然后使用已加载的值加载我的web html。这个有可能?我希望这样做,因为我想在不使用Ajax的情况下调用我的PHP代码,同时Php获取的值将被加载到我的web html中。

像这样: 加载www.example.com - >重定向到www.example.com/index.php

---index.php---
<?php
//do something
include("YourHtmlWeb.html");
echo '<script type="text/javascript">',
     'YourFunction("hi");',
     '</script>';
exit;
?>

---Html-javascript---
<script type="text/javascript">
        function YourFunction(msg){
            alert(msg);
        }
</script>

0 个答案:

没有答案