|
|
|
ช่วยเรื่อง colorbox หน่อยคับ ช่วยหน่อยคับ ช่วยหน่อยคับ |
|
|
|
|
|
|
|
ตรงไหนหรอครับที่ว่าเป็น ajax
|
|
|
|
|
Date :
2011-09-20 11:20:35 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมมี code
หน้าหลัก
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8 />
<title>ColorBox Examples</title>
<link media="screen" rel="stylesheet" href="colorbox.css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.colorbox.js"></script>
<script>
$(document).ready(function(){
$(".devPro").colorbox({
innerWidth:750,
innerHeight:500,
});
$("#click").click(function(){
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
return false;
});
});
</script>
</head>
<body>
<form action="#" name="myForm" id="myForm">
<br><br><br>
<h2>กดตรงนี้</h2>
<p><a class='devPro' href="noname4.php" title="">Example with alerts</a></p><br><br><br><br>
</form>
</body>
</html>
=====================================================================
หน้า popupcolorbox ชื่อ noname4.php
<?php
if($_POST){
$sql = "insert into member(id,username,password)values('','".$_POST['username']."','".$_POST['pwd']."')";
msql_query($sql);
//หลังจากบันทึกข้อมูลแล้ว กลับไปหน้าหลัก
}
?>
<html>
<body>
<form>
<table>
<tr>
<td><input type="text" name="username" id="username"></td>
<td><input type="text" name="pwd" id="pwd"></td>
</tr>
<tr>
<td><input type="submit" name="save" id="save" value="SaveData"></td>
<td><input type="reset" name="hhh" id="hhh" value="ResetData"></td>
</tr>
</table>
</form>
</body>
</html>
ปัญหาคือ พอกด submit ไม่บันทึกหน้า popup ช่วยหน่อยคับ
|
|
|
|
|
Date :
2011-09-20 14:40:28 |
By :
สบาย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อาการของ code กด submit popup มันปิดไปเฉยๆ
หาวิธีให้ popup ไม่ปิดไม่ได้คับ
ช่วยหน่อยคับ
|
|
|
|
|
Date :
2011-09-20 14:43:57 |
By :
สบาย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าจำไม่ผิด form ถ้าไม่ใส่ method ให้มัน มันจะส่งเป็น get นะ ลองใช้ if($_REQUEST){ แทนดูครับ
|
|
|
|
|
Date :
2011-09-20 14:44:26 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|