|
|
|
ถามเรื่อง Ajax ขณะพิมพ์ เมื่อพิมข้อมูลลงใน textbox จะแสดงข้อมูลออกมา |
|
|
|
|
|
|
|
ถามเรื่อง Ajax ขณะพิมพ์ เมื่อพิมข้อมูลลงใน textbox จะแสดงข้อมูลออกมาขณะพิมพ์
ผมทำ textbox อันเยว ได้ครับ
ถ้าเอา 2 อันผมทำแล้วมันไม่ได้ครับ
เรื่องของเรื่องอยากจะกรอกค่า 2 อัน เพื่อให้การค้นหาแม่นยำมากขึ้นครับ
จาก code ด้านล่างนี้มันมีปัญหาตรงที่ การส่งค่า input ครับไม่ทราบว่าผิดตรงไหน
req.send('find1.php' , 'identity_card ='+ encodeURIComponent(input.value), '&username ='+ encodeURIComponent(input.value) , function(xhr)
ด้านบนไม่รู้ว่าทำถูกหรือป่าว
เพราะถ้าส่งค่าไปอันเดียวนั้น ได้ครับ
ส่วน code ด้านล่างเป็นการส่งค่า 2 อันครับ
Code
<form>
<p>Username : <input type="text" id="identity_card" name="identity_card" /><span id="result"> </span></p>
<p>Fistname : <input type="text" id="username" name="username" /><span id="result"> </span></p>
<p>ลองพิมพ์คำว่า demon ลงในช่อง Username (ทีละตัว)</p>
<p>Fname : <input type="text" id="Fname" name="Fname" /></p>
<p>Lname : <input type="text" id="Lname" name="Lname" /></p>
<p>Email : <input type="text" id="email" name="email" /></p>
<p>Email : <input type="text" id="tel" name="tel" /></p>
</form>
<script type="text/javascript">
var doKeyUp = function(event){
var input = GEvent.element(event);
var req = new GAjax();
var result = $E('result');
// แสดงรูปรอโหลด เพื่อบอกว่ากำลังส่งข้อมูลไปตรวจสอบ
result.innerHTML = '<img src="ajaxload.gif" alt="" />';
// ajax ส่งข้อมูลไปตรวจสอบ
req.send('find1.php' , 'identity_card ='+ encodeURIComponent(input.value), '&username ='+ encodeURIComponent(input.value) , function(xhr) {
result.innerHTML = ' ';
var datas = xhr.responseText.toJSON();
var prop, val;
for (prop in datas[0]) {
val = datas[0][prop];
$E(prop).value = val;
};
});
}
$G('identity_card').addEvent('keyup', doKeyUp);
$G('username').addEvent('keyup', doKeyUp);
</script>
code ด้านล่างเป็น code php (find1.php) ครับ
Code
<?php require_once('../../Connections/land.php'); ?>
<?php
// สำหรับตรวจสอบในขณะกรอกข้อมูล
header("content-type: text/html; charset=UTF-8");
// ค่าที่ส่งมา
$identity_card = trim($_POST['identity_card']);
$fistname = trim($_POST['fistname']);
/* // กำหนดข้อมูล (ตัวอย่าง)
$identity_cards = array('demo', 'demon');
$names = array('hunter', 'mast');
$emails = array('[email protected]', '[email protected]');
$displaynames = array('ตัวอย่าง', 'Demon !');
*/#####################################################################
mysql_select_db($database_land, $land);
$query_check_identity_card = "SELECT * FROM users WHERE users.identity_card='$identity_card' AND users.fistname='$fistname'";
//$query_check_identity_card = "SELECT * FROM users WHERE users.identity_card='$_POST[identity_card]'";
$check_identity_card = mysql_query($query_check_identity_card, $land) or die(mysql_error());
//$row_check_identity_card = mysql_fetch_assoc($check_identity_card);
//$fistnames = $row_check_identity_card['fistname'];
//$lastnames = $row_check_identity_card['lastname'];
//$emails = $row_check_identity_card['email'];
//$totalRows_check_identity_card = mysql_num_rows($check_identity_card);
#####################################################################
// ค้นหาข้อมูล
while($row_check_identity_card = mysql_fetch_assoc($check_identity_card)){
$identity_cards = $row_check_identity_card['identity_card'];
$fistnames = $row_check_identity_card['fistname'];
if($identity_cards == $identity_card AND $fistnames == $fistname){
//if($identity_cards == $identity_card){
mysql_select_db($database_land, $land);
$query_show_identity_card = "SELECT * FROM users WHERE users.identity_card='$identity_cards' AND users.fistname='$fistnames'";
//$query_show_identity_card = "SELECT * FROM users WHERE users.identity_card='$identity_cards'";
$show_identity_card = mysql_query($query_show_identity_card, $land) or die(mysql_error());
$row_show_identity_card = mysql_fetch_assoc($show_identity_card);
//$totalRows_show_identity_card = mysql_num_rows($show_identity_card);
$fistnames = $row_show_identity_card['fistname'];
$lastnames = $row_show_identity_card['lastname'];
$emails = $row_show_identity_card['email'];
$tels = $row_show_identity_card['tel'];
}
}
// กำหนดค่าที่คืน
$ret[] = 'Fname":"'.$fistnames;
$ret[] = 'Lname":"'.$lastnames;
$ret[] = 'email":"'.$emails;
$ret[] = 'tel":"'.$tels;
// คืนค่าเป็น JSON
echo '[{"'.implode('","', $ret).'"}]';
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-12-16 10:55:30 |
By :
steamlose |
View :
1828 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|