|
|
|
ส่งค่าไปคำนวณหน้า popup อยากให้มีการส่งค่าจาก textbox ของ 1.php ไปประมาลผลยัง 2.php ซึ่งเป็น popup ต้องทำไงครับ |
|
|
|
|
|
|
|
ใช้ DOM HTML ครับ ไม่แน่ใจว่าเรียกถูกป่าว
โดย อ้างจาก ID ครับ
Code (PHP)
<script type="text/javascript">
function show_alert()
{
var red = document.getElementById("text_name").value;
alert(red); window.open("2.php",null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable =0");
}
</script>
</head>
<body>
<form action ="2.php" method="post" onclick="show_alert()">
<input type="text" id="text_name" name="txt" >
<input type="submit" value="submit" >
</form>
ได้ค่า แล้วนะครับ ส่งแบบ GET ก็จบครับ
|
|
|
|
|
Date :
2010-04-27 10:24:31 |
By :
kaos |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คืออยากได้ประมาณว่า
ส่งค่าไปแสดงยัง popup
เช่น textbox รับค่า 1 และ 2 แล้วกด submit
ก็จะแสดง popup ชึ้นมา แสดงค่าเป็น 3
|
|
|
|
|
Date :
2010-04-27 10:49:13 |
By :
Deksoft |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script type="text/javascript">
function show_alert()
{
var red = document.getElementById("text_name").value;
alert(red); window.open("2.php?id=" + red,null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable =0");
}
</script>
</head>
<body>
<form action ="2.php" method="post" onclick="show_alert()">
<input type="text" id="text_name" name="txt" >
<input type="submit" value="submit" >
</form>
ใน file 2.php ก็ echo $_GET['id'];
|
|
|
|
|
Date :
2010-04-27 11:16:28 |
By :
onedan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|