帝国cms ajax调用代码
时间: 2023-05-28 22:06:49 浏览: 201
以下是一个基本的帝国CMS AJAX调用代码示例:
```
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML =
this.responseText;
}
};
xhttp.open("GET", "ajax.php", true);
xhttp.send();
}
</script>
<button type="button" onclick="loadDoc()">调用 AJAX</button>
<div id="demo"></div>
```
在此示例中,我们使用XMLHttpRequest对象来发出GET请求,然后在回调函数中更新DOM元素。请注意,我们在xhttp.open()方法中指定了要调用的PHP文件(ajax.php),该文件将返回所需的数据。在此示例中,我们只是将数据插入到id为“demo”的div元素中。
请根据您的特定需求进行修改和调整。
阅读全文