同期通信でデータ取得(POST)
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//w3c//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD.xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta HTTP-EQUIVE="Content-Type" CONTENT="text/html;charset=utf-8" />
<title>同期通信でデータ取得(POST)</title>
<script src="../js/prototype.js" type="text/Javascript"></script>
<script src="../js/funcs.js" type="text/Javascript"></script>
<script src="../js/test4.js" type="text/Javascript"></script>
</head>
<body>
<form id=frm name=frm>
登録ユーザID<input type=text id=userid name=userid value="" style="width:200px;"><br />
登録ユーザ名<input type=text id=usernm name=usernm value="" style="width:200px;"><br />
<input type=button id=btn1 name=btn1 value="検索">
</form>
</body>
</html>
<!--
test4.js
//画面の起動時に呼びだされます
Event.observe( window, 'load', getResultPHP );
//呼び出すJSONデータの登録処理をします
function getResultPHP(){
//画面のボタン処理を実装します
Event.observe(
'btn1',
'click',
function()
{
funcGetData1();
}
);
}
//Clickしたときの動作を定義します
function funcGetData1()
{
var userid = document.getElementById("userid").value;
var xhrObj = getXhrObj();
//第3引数をfalseにすることで同期通信を指定します
xhrObj.open("post", "../php/test4.php",false);
//送信データのContent-Typeを指定しています
xhrObj.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhrObj.send("userid="+userid);
var usernm = xhrObj.responseText;
document.getElementById("usernm").value = usernm;
}
test4.php
<?php
header("Content-Type:text/html;charset=utf-8;");
$data1=$_POST["userid"];
if($data1=="")
{
print "登録ユーザIDを入力してください。";
return ;
}
print "test user";
?>
--------------------------------------------------
-->
|
|