使用ajax,php和jQuery更改DIV内容

前端之家收集整理的这篇文章主要介绍了使用ajax,php和jQuery更改DIV内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div,其中包含数据库的一些文本:
<div id="summary">Here is summary of movie</div>

链接列表:

<a href="?id=1" class="movie">Name of movie</a>
<a href="?id=2" class="movie">Name of movie</a>
..

这个过程应该是这样的:

>点击链接
> Ajax使用链接的URL将数据通过GET传递到PHP文件/同一页面
> PHP返回字符串
> div更改为此字符串

<script>

function getSummary(id)
{
   $.ajax({

     type: "GET",url: 'Your URL',data: "id=" + id,// appears as $_GET['id'] @ your backend side
     success: function(data) {
           // data is ur summary
          $('#summary').html(data);
     }

   });

}
</script>

并在列表中添加onclick事件

<a onclick="getSummary('1')">View Text</a>
<div id="#summary">This text will be replaced when the onclick event (link is clicked) is triggered.</div>
原文链接:https://www.f2er.com/ajax/160265.html

猜你在找的Ajax相关文章