在我的项目中,我需要在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()
答案 0 :(得分:6)
我对所提供的有限信息的猜测是你没有调用getValue()
函数。
<?php
function getValue()
{
echo json_encode('84');
}
getValue();
?>