使用ajax从html文件执行php代码

时间:2015-11-09 14:15:21

标签: php

我是php开发的新手,我遇到了一些愚蠢的事情:我想从我的html页面执行一个php脚本。

我执行以下操作:

Supplier

但是当我记录响应时,我在响应中看到了php源代码:

    $.ajax({
        type: "GET", 
        url: "test1.php",
        success: function(response) {
            //alert(response);
            console.log(response);
        },

        error: function(response) {

        }
    });

1 个答案:

答案 0 :(得分:0)

试试这个...... 呼叫头标记

<head>
 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js" type="text/javascript"></script>
</head>  

在javascript标记中

$.ajax({
                type: "GET",
                url: "test1.php",
                success: function (html) {
console.log(response);
                },

        error: function(response) {

        }
            });
        return false;