2

首先,请原谅我的英语不好

我在 ubuntu 中为 jquery/ajax 系统工作

我的代码如下:

索引.html

...
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
</head>
<body>
<form name="stuSelForm" id="stuSelForm">
<table id="inputTable">
<tr><td colspan="3" align="center">Stu From</td></tr>
<tr>
<td>&nbsp;</td>
<td>St No : </td>
<td><input type="text" name="StNo" id="StNo" /></td>
</tr>
<tr>
<td></td>
<td>name : <br/> family : </td>
<td><input type="text" name="Fname" id="Fname" /><br/><input type="text" name="Lname" id="Lname" /></td>
</tr>
<tr>
<td colspan="3" align="right"><input type="submit" id="send" name="send" value="show" /></td>
</tr>
</table>
</form>
</body>
<script type="text/javascript" src="js/jscodes.js"></script>
...

.js 文件:

$(document).ready(function()
{
$('#stuSelForm').submit(function(event)
{
    var form = $(this);
    inputs = form.find("input");
    serializedData = form.serialize();

    inputs.attr("disabled","disabled");

    $.ajax({
        url:'process.php',
        type:'POST',
        data: serializedData,
        dataType:'text',
        cache: false,
        success : function(data,textStatus,jqXHR){ alert(data); },
        error : function(jqXHR,textStatus,errorThrown) { alert(textStatus+jqXHR.status+jqXHR.responseText+"..."); },
        complete : function(jqXHR,textStatus)
                        {
inputs.removeattr("disabled");
                        }
        });
    event.preventDefault();
});
});

和 process.php :

<?php
header("Content-Type: text/html");
$StNo = $_POST['StNo'];
echo $_POST['StNo'];
?>

现在一切正常,但返回值不是 StNo 它是 process.php 的全部内容,这意味着

请帮助我为什么会发生这种情况,这是针对 php 扩展还是我的错误或...

tanx 寻求帮助

4

2 回答 2

1

听起来php没有运行。您是否正在运行通过 localhost / 服务器或直接从目录调用 php 文件的 HTML 文件?您需要 php 服务器来评估您的 php 脚本。

于 2013-07-15T18:50:21.900 回答
0

标题中的问题:您在 jquery 中编写,dataType: text但在 php中编写header("Content-Type: text/html"); 更改它以获得成功:像这样:

$.ajax({
    url:'process.php',
    type:'POST',
    data: serializedData,
    cache: false,
    success : function(data,textStatus,jqXHR){ alert(data); },
    error : function(jqXHR,textStatus,errorThrown) { alert(textStatus+jqXHR.status+jqXHR.responseText+"..."); },
    complete : function(jqXHR,textStatus){inputs.removeattr("disabled");}
    });

我删除了dataType:,因为 jquery 默认设置是,在这种情况下dataType:'html' 你不需要写dataType

于 2012-12-08T08:24:36.053 回答