我需要使用在另一个div中触发的php脚本将内容加载到div中,但我在我的智慧结束...
这样的事情:
echo"<script>$('#posters').load($query->execute($sql));</script>";
答案 0 :(得分:0)
这样的东西?
这将获取一个php文件(sql-query.php),然后在单击按钮时更改div #update中的内容。
$(document).ready(function () {
$('.btn').click(function(){
$.get("sql-query.php", function (result) {
$('#update').html(result);
});
});
});