我需要發送錨點標籤上的文本框值點擊checkID.php,並顯示從PHP頁面發送的HTML頁面中的響應。我試過使用javascripts。但該頁面被重定向到checkID.php頁面。需要在相同的html頁面中顯示。如何從php頁面獲取響應?
<a href="#" onclick="javascript:fillContent('checkID.php'); ">
Check Availability
</a>
在窗體動作中,我聲稱爲checkID.php。 以下是JavaScript我用
<script language="javascript">
function fillContent(resource)
{
xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", resource, true);
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4) {
el = document.getElementById('availabilityResponse')
el.innerHTML = xmlhttp.responseText;
}
}
xmlhttp.send(null);
}
</script>
下面
是我的PHP代碼
<?php
require_once('lib/nusoap.php');
$client=new nusoap_client("http://localhost/server.php?wsdl");
$error = $client->getError();
if ($error) {
return $error;
}
$alias=$_POST['id'];
$response = $client->call("checkAvailability", array("id" => $alias));
if($client->fault)
{
return $client->faultstring;
}
else
{
$error = $client->getError();
if ($error) {
return $error;
}
else {
return $response;
}
}
?>
如何讓html頁面的響應和顯示?
更具體,你想要什麼? – Dev
你能顯示你的完整HTML代碼嗎? – skos
我需要顯示來自php代碼的響應。這是我的php代碼 – anipaul