gpt4 book ai didi

php - 使用 ajax、php 和 jQuery 更改 DIV 内容

转载 作者:IT王子 更新时间:2023-10-28 23:50:56 25 4
gpt4 key购买 nike

我有一个 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>
..

流程应该是这样的:

  1. 点击链接
  2. Ajax 使用链接的 url 通过 GET 将数据传递到 php 文件/同一页面
  3. PHP 返回字符串
  4. 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>

关于php - 使用 ajax、php 和 jQuery 更改 DIV 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6506873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com