在“加载”内容之前,如何让PHP先处理并显示html的外层?例如,
<html>
<body>
<p>Please wait, we are processing your request</p>
<?php include 'article.php';?>
</body>
</html>
我想首先在客户端浏览器上打印它,
<html>
<body>
<p>Please wait, we are processing your request</p>
</body>
</html>
在显示此处包含的内容之前
<?php include 'article.php';?>
有可能吗?
答案 0 :(得分:1)
您可以使用Jquery:
<html>
<body>
<div id='article'>
<p>Please wait, we are processing your request</p>
</div>
<script>
$("#article").load("article.php");
</script>
</body>
</html>
.load
命令从您提供的任何URL获取内容,并将其粘贴到指定的DOM元素(#article
)中。
阅读所有相关信息: http://api.jquery.com/load/