|
|
|
ส่งข้อมูล ผ่าน ajax ไปแล้ว ทำยังไงให้แสดงข้อมูล ตรง <DIV id=abc>ข้อมูล</DIV> รีเฟรชใหม่ เพราะข้อมูลที่ส่งก็คือส่วน <DIV> |
|
|
|
|
|
|
|
<!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-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$.ajax({
url: "update_menu.php" ,
type: "POST",
datatype: "json",
data: 'keyword={"image":"'+$(".txtimage").val()+'","id":"'+$(".txtid").val()+'","dis":"'+$(".txtdiscription").val()+'","price":"'+$(".txtprice").val()+'","oder":"'+$(".txtoder").val()+'"}'
})
.success(function(result) {
var obj = jQuery.parseJSON(result);
$("#abc").html(obj);
});
});
});
</script>
</head>
<body>
<div id="abc">
ข้อมูล
ข้อมูล
ข้อมูล
</div>
</body>
</html>
|
|
|
|
|
Date :
2012-10-21 15:09:55 |
By :
dekkuza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่อีกนิด ที่ให้โค้ดมารันจอขาวไปเลยครับ แต่ผมว่ามันก้ใช่ แต่ใน <div> ผมไม่ได้บอกรายละเอียดไป
คือ ใน <DIV> มันไม่ใช่ข้อมูลธรรมดา มันเป็นโค้ดที่มีการติดต่อ MYSQL และกดแก้ไขในหน้าเดียว
เป็นโค้ดธรรมดาที่อยากให้รันเมื่อแก้ไขเสร็จ มีโค้ดเต็ม ครับ
<!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-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$.ajax({
url: "update_menu.php" ,
type: "POST",
datatype: "json",
data: 'keyword={"image":"'+$(".txtimage").val()+'","id":"'+$(".txtid").val()+'","dis":"'+$(".txtdiscription").val()+'","price":"'+$(".txtprice").val()+'","oder":"'+$(".txtoder").val()+'"}'
})
.success(function(result) {
var obj = jQuery.parseJSON(result);
$("#abc").html(obj);
});
});
});
</script>
</head>
<body>
<div id="abc">
<?
$objConnect = mysql_connect("localhost","root","12345") or die(mysql_error());
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM tb_image1 where password = 77777 order by id desc limit 5 ";
$objQuery = mysql_query($strSQL)or die ("Error Query [".$strSQL."]");
$objResult = mysql_fetch_array($objQuery)
?>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="2">
<tr>
<td width="50" align="center" bgcolor="#FF99CC">#</td>
<td width="80" bgcolor="#FF99CC">Picture</td>
<td height="20" bgcolor="#FF99CC">Topic</td>
<td width="80" bgcolor="#FF99CC">price</td>
<td width="50" bgcolor="#FF99CC">edit</td>
<td width="50" bgcolor="#FF99CC">oder</td>
</tr>
<tr bgcolor="#CCCC99" style="cursor:pointer;">
<td align="center" bgcolor="#EBEBD8"><?=$i?></td>
<td width="70" bgcolor="#EBEBD8"><div align="center"><a href="link_1.php?CusID=<?=$objResult["password"];?>&ID=<?=$objResult["F1"];?>"><img src="myfile/<?=$objResult["F1"];?>" width="120" heigth="50"></a></div></td>
<td height="20" bgcolor="#EBEBD8"><?=$objResult["F2"];?><?=$i?></td>
<td height="20" bgcolor="#EBEBD8"><?=$objResult["F3"];?></td>
<td height="20" bgcolor="#EBEBD8"><?=$objResult["F4"];?></td>
<td height="20" align="center" bgcolor="#EBEBD8" onclick="$('#tr_toggle1').toggle();" >EDIT</td>
</tr>
<tr style="display:none;" id="tr_toggle1">
<td bgcolor="#F8F8EF">
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="file" class="txtimage" size="1"/>
<input type="hidden" class="txtid" value="<?=$objResult["menu"];?>" />
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="text" class="txtdiscription" size="8" value="<?=$objResult["F2"];?>" /><?=$i?>
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="text" class="txtprice" size="2" value="<?=$objResult["F3"];?>" />
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="text" class="txtoder" size="2" value="<?=$objResult["F4"];?>" />
</td>
<td align="center" bgcolor="#F8F8EF">
<input type="button" class="btn1" value="Save">
</td>
</tr>
</table>
<?
mysql_close($objConnect);
?>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
</div>
</body>
</html>
|
ประวัติการแก้ไข 2012-10-21 17:07:34 2012-10-27 20:04:24
|
|
|
|
Date :
2012-10-21 17:03:16 |
By :
BABANGYAI |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรุณาทำให้อ่านง่ายด้วย แบบนี้น่ะ
Code (PHP)
<!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-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$.ajax({
url: "update_menu.php" ,
type: "POST",
datatype: "json",
data: 'keyword={"image":"'+$(".txtimage").val()+'","id":"'+$(".txtid").val()+'","dis":"'+$(".txtdiscription").val()+'","price":"'+$(".txtprice").val()+'","oder":"'+$(".txtoder").val()+'"}'
})
.success(function(result) {
var obj = jQuery.parseJSON(result);
$("#abc").html(obj);
});
});
});
</script>
</head>
<body>
<div id="abc">
<?
$objConnect = mysql_connect("localhost","root","784512") or die(mysql_error());
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM tb_image1 where password = 77777 order by id desc limit 5 ";
$objQuery = mysql_query($strSQL)or die ("Error Query [".$strSQL."]");
$objResult = mysql_fetch_array($objQuery)
?>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="2">
<tr>
<td width="50" align="center" bgcolor="#FF99CC">#</td>
<td width="80" bgcolor="#FF99CC">Picture</td>
<td height="20" bgcolor="#FF99CC">Topic</td>
<td width="80" bgcolor="#FF99CC">price</td>
<td width="50" bgcolor="#FF99CC">edit</td>
<td width="50" bgcolor="#FF99CC">oder</td>
</tr>
<tr bgcolor="#CCCC99" style="cursor:pointer;">
<td align="center" bgcolor="#EBEBD8"><?=$i?></td>
<td width="70" bgcolor="#EBEBD8"><div align="center"><a href="link_1.php?CusID=<?=$objResult["password"];?>&ID=<?=$objResult["F1"];?>"><img src="myfile/<?=$objResult["F1"];?>" width="120" heigth="50"></a></div></td>
<td height="20" bgcolor="#EBEBD8"><?=$objResult["F2"];?><?=$i?></td>
<td height="20" bgcolor="#EBEBD8"><?=$objResult["F3"];?></td>
<td height="20" bgcolor="#EBEBD8"><?=$objResult["F4"];?></td>
<td height="20" align="center" bgcolor="#EBEBD8" onclick="$('#tr_toggle1').toggle();" >EDIT</td>
</tr>
<tr style="display:none;" id="tr_toggle1">
<td bgcolor="#F8F8EF">
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="file" class="txtimage" size="1"/>
<input type="hidden" class="txtid" value="<?=$objResult["menu"];?>" />
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="text" class="txtdiscription" size="8" value="<?=$objResult["F2"];?>" /><?=$i?>
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="text" class="txtprice" size="2" value="<?=$objResult["F3"];?>" />
</td>
<td align="left" bgcolor="#F8F8EF">
<input type="text" class="txtoder" size="2" value="<?=$objResult["F4"];?>" />
</td>
<td align="center" bgcolor="#F8F8EF">
<input type="button" class="btn1" value="Save">
</td>
</tr>
</table>
<?
mysql_close($objConnect);
?>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
</div>
</body>
</html>
|
|
|
|
|
Date :
2012-10-21 17:48:05 |
By :
dekkuza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
//ถ้าข้อมูลส่งกลับมาเป็น object น่าจ่ะประมาณนี้
$("#abc").val(obj.xxxx);
ให้ข้อมูลมาน้อย เช่น ไฟล์ชื่อไร รับจาก อะไร ส่งไปไหน น่าจะบอกมาด้วย
|
|
|
|
|
Date :
2012-10-21 17:56:02 |
By :
dekkuza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|