需要安装本地服务器进行测试,我安装的是wampserver。 很有用的,一个方法,希望能帮助到你。不过,不太合适小白。 前台代码: !DOCTYPE html html head meta http-equiv=Content-Type content=text/html; charset=utf-8 / script src=jquery.js/script styl
需要安装本地服务器进行测试,我安装的是wampserver。
很有用的,一个方法,希望能帮助到你。不过,不太合适小白。
前台代码:
<script><br>
$('input[type=button]').click(function(){<br>
var ul = $('#info>ul');<br>
var url = 'test1.php?'+Math.random();<br>
$.ajax({<br>
url:url,<br>
type:'get',<br>
success:function(data){<br>
//eval()函数把服务器传来的string类型变成object类型然后利用对象的手段把服务器的信息呈现在前台。<br>
var res = eval(data);<br>
//res[0].title表示第一个数组的title<br>
//$('#info').html(res[0].title);<br>
for(var i = 0; i < res.length; i++){<br>
ul.append('<li>'+res[i].title+'<em>'+res[i].time+'')<br>
}<br>
}<br>
});<br>
});<br>
</script>
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn