使用jQuery,我可以使用下面的代码通过ajax发送1个参数,并返回请求的数据。
我的javascript文件名为:globals.js
$('#submitButton').on('click', function(){
var port = $('#port').val(); // single parameter passed from index.php
if($.trim(port) != '')
{
$.post('api/summary.php', {port: port}, function(data){
$('#content').html(data);
});
}
});
以下是一些名为index.php
的文件中的INPUT字段 <input type="text" id="port" name="port" />
<input type="text" id="voyage" name="voyage" />
<input type="text" id="rep" name="rep" />
// quite a few more input fields and select options as well
<button type="submit" id="submitButton" name="submitButton">Submit</button>
<script src="js/globals.js" type="text/javascript"></script> // included javascript file above
因此,当用户输入PORT并单击submit时,上面的jQuery执行并获取PORT,并通过ajax调用向其发送名为:summary.php的PHP脚本
<?php
include("../include/database.php");
$_SESSION['where'] = "";
$port = $_POST['port'];
$voyage = $_POST['voyage'];
$rep = $_POST['rep'];
// more variables follow;
// at this point, I can echo port and return in to the page,
or use it in a query, and return the data in a table if necessary
echo $port; // passed from jquery
echo $voyage; // cannot pass from jquery
echo $rep; // cannot pass from jquery
// and so on....
?>
我可以在上面jQuery中指示的$(&#39; #content&#39;)。html(数据)中显示内容(现在只是PORT)。
但我需要做的是能够让jQuery接受多个参数并将它们传递给我的PHP脚本。这就是我被困住的地方。
我知道问题出在上面的jQuery中。
所以我的问题是:如何在不刷新页面的情况下传递一个或多个参数?
答案 0 :(得分:2)
您只需添加到数组 -
$('#submitButton').on('click', function(){
var port = $('#port').val(); // single parameter passed from index.php
var voyage = $('#voyage').val();
// add other values here
if($.trim(port) != '')
{
$.post('api/summary.php', {port: port, voyage: voyage /* add other values separated by commas */}, function(data){
答案 1 :(得分:1)
$.post( "api/summary.php", { name: "John", time: "2pm"} , function(data){
$('#content').html(data);
});
这样的东西?只需附加以逗号分隔的额外数据。