如何使用 Jquery 包含 php 文件?

2022-01-25 00:00:00 include jquery php

我有那个 div:

<div id="content"></div>

我想使用 jQuery 将 PHP 文件包含在内.

and I want to include inside PHP file using jQuery.

我尝试了这个,但不起作用:

I try with this, but doesn't work:

var about_me = "<?php include('php/about_me.php') ?>"

$('$content').click(function(){
 $('#content').text(about_me);
});

这会像字符串一样返回 PHP 代码?

This returns me PHP code like a string?

推荐答案

你可以使用 .load:

You could use .load:

$("#content").load('/about_me.php');

相关文章