使用php $ _GET加载jQuery不起作用

i want to send Get when the link clicked to receive the result in php code and this what happened this in php file working perfect

        <html>
    <a class="cc" href="#">click me</a>
    <script src="js/jquery.js"></script>
    <script type="text/javascript">
    
        $(document).ready(function () {
    
            $(".cc").click(function () {
                $(".body").load('page.php ')
            })});
    
    </script>
    
    <section class="body"></section>
    
    </html>

but when i put GET to the href didn't work just Flashing content

<html>
    <a class="cc" href="?id=1">click me</a>
    <script src="js/jquery.js"></script>
    <script type="text/javascript">
    
        $(document).ready(function () {
    
            $(".cc").click(function () {
                $(".body").load('page.php ')
            })});
    
    </script>
    
    <section class="body"></section>
    
    </html>

</div>

In the second case, you really need to stop the <a> from following the link.

$(document).ready(function() {
  $(".cc").click(function(e) {
    e.preventDefault();
    $(".body").load('page.php');
  });
});