PHP / JS / AJAX / HTML:动态创建网页

时间:2016-05-10 02:08:52

标签: javascript php html ajax

这是我第一次使用AJAX,我一直在阅读它,这也是我第一次使用js。我想我一直困惑自己。

我正在尝试动态创建一个新的餐馆页面,因此每次管理员点击onclick按钮时,都会创建一个新网页,其中包含我已经创建的新餐厅页面中的内容。

目前我已经按下按钮,成功创建了一个新网页,但是,我不知道如何访问新网页我还想显示新创建的网页的链接,因为它创建,例如使用之前。例如,在js中显示我的o&#;时钟按钮之前的动态特征。

HTML

<html>
<body>
<button onclick="makePage()">click</button>
<script src="makePage.js">
</script>
</body>
</html>

JS

function makePage(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState==4 && xmlhttp.status==200)
    alert("webpage " + xmlhttp.responseText + " was successfully created!");
}
var content = "<html><head><meta charset=\"utf-8\" /> </head><body>new website<script>alert(\"test\")</script></body></html>";
xmlhttp.open("GET","makePage.php?content=" + content,true);
xmlhttp.send();

}

PHP

<?php
$content = $_GET["content"];
$file = uniqid() . ".html";
file_put_contents($file, $content);
echo $file;
?>

有什么建议吗?我可以阅读的指导或相关页面。任何事情都会非常感激。

1 个答案:

答案 0 :(得分:2)

在你的js中做这样的事情而不是警告:

if(xmlhttp.readyState==4 && xmlhttp.status==200){
    var createA = document.createElement('a');
    var createAText = document.createTextNode(xmlhttp.responseText); // or whatever name you need
    createA.setAttribute('href', xmlhttp.responseText);
    createA.appendChild(createAText);
    document.body.appendChild(createA); // or you can create some <div> or whatever and append it to that
}

这是普通的javascript,但使用jquery,您可以使用ajaxget函数轻松完成。