在javascript文件中调用PHP函数

时间:2015-04-23 17:08:47

标签: javascript php jquery ajax json

在我的项目中,我需要在Javascript文件中调用PHP函数。我有一个名为getValue()的文件。在这个文件里面我有一个名为<? php function getValue() { echo json_encode('84'); } ?> 的函数。这个函数会返回一些值:

myScript.js

另外,我有一个名为detVale();的Javascript文件。在此文件中,我想调用var knobValue并将返回值保存在var knobValue; $.post('Test.php', function(result) { knobValue=result; }, 'json'); $.get('Test.php', function(result) { knobValue=result; }); $.ajax({ type: 'POST', url: 'Test.php', dataType: 'json', cache: false, success: function(result) { knobValue=result; } }); 中。我尝试了这个,但它不起作用

RSA_433::RSA_433()

1 个答案:

答案 0 :(得分:6)

我对所提供的有限信息的猜测是你没有调用getValue()函数。

<?php
    function getValue()
    {
        echo json_encode('84');
    }

    getValue();
?>