Heim > Fragen und Antworten > Hauptteil
P粉3962485782023-07-31 18:12:34
试下这个
<script> var phpadd= <?php echo add(1,2);?> //call the php add function var phpmult= <?php echo mult(1,2);?> //call the php mult function var phpdivide= <?php echo divide(1,2);?> //call the php divide function </script>
P粉2352025732023-07-31 12:39:42
是的,您可以使用请求参数向服务器发送带有数据的Ajax请求,就像这样(非常简单):
请注意,以下代码使用jQuery。
jQuery.ajax({ type: "POST", url: 'your_functions_address.php', dataType: 'json', data: {functionname: 'add', arguments: [1, 2]}, success: function (obj, textstatus) { if( !('error' in obj) ) { yourVariable = obj.result; } else { console.log(obj.error); } } });
您的_functions_address.php文件应该像这样:
<?php header('Content-Type: application/json'); $aResult = array(); if( !isset($_POST['functionname']) ) { $aResult['error'] = 'No function name!'; } if( !isset($_POST['arguments']) ) { $aResult['error'] = 'No function arguments!'; } if( !isset($aResult['error']) ) { switch($_POST['functionname']) { case 'add': if( !is_array($_POST['arguments']) || (count($_POST['arguments']) < 2) ) { $aResult['error'] = 'Error in arguments!'; } else { $aResult['result'] = add(floatval($_POST['arguments'][0]), floatval($_POST['arguments'][1])); } break; default: $aResult['error'] = 'Not found function '.$_POST['functionname'].'!'; break; } } echo json_encode($aResult); ?>