|
|
|
ถามเรื่องการทำงานร่วมกันของ form+listbox+iframe2iframe คะ |
|
|
|
|
|
|
|
แล้วเรื่องส่งค่าในฟอร์ม form1 ไปยัง เฟรม f1 แล้ว action='page1.php' อ่ะคะใส่อย่างไร
ตอบสั่นๆแบบนี้งงเลยคะ
|
ประวัติการแก้ไข 2010-10-19 13:37:39
|
|
|
|
Date :
2010-10-19 13:33:10 |
By :
sa_jeed |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<br />
<script language="javascript">
function CheckCondition(val){
if(document.form1.selectD.value =="1"){
document.form1.target = "f1";
document.form1.action = 'page1.php';
}else{
document.form1.target = "f2";
document.form1.action = 'page2.php';
}
}
</script>
<form id="form1" name="form1" method="get" onSubmit="CheckCondition(this.value)">
<input type="text" name="searchD" id="searchD" />
<select name="selectD" id="selectD">
<option value="1">List1</option>
<option value="2">List2</option>
<option value="3">List3</option>
</select>
<input type="submit" name="button" id="button" value="ค้นหา" />
</form>
<br />
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><iframe name="f1" id="f1" width="95%" height="500"></iframe></td>
<td><iframe name="f2" id="f2" width="95%" height="500"></iframe></td>
</tr>
</table>
</body>
</html>
แล้วถ้าเขียนแบบนี้ได้แล้วคะ
ขอบคุณนะคะที่แนะแนวทางให้คะ
|
|
|
|
|
Date :
2010-10-19 14:13:01 |
By :
sa_jeed |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|