|
|
|
พอคลิกปุ่มแล้ว ให้แสดง message ขึ้นมาพร้อมกับใน message นั้นมี redio ให้เลือก 2 radio เพื่อที่จะทำเงื่อนไขอ่ะค่ะ |
|
|
|
|
|
|
|
ทำเป็น window popup ดีกว่าไหมครับ แบบนั้นอ่ะ
|
|
|
|
|
Date :
2011-07-27 16:24:26 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาส่วนนี้ไว้ ใน body
Code (PHP)
<script language="JavaScript">
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features).focus();
}
</script>
<input name="name" type="text" id="name">
<a href="javascript:MM_openBrWindow('link.php','xxx','scrollbars=no,width=350,height=210')">เลือกข้อมูล</a>
แล้วนี้เป็นอีกไฟล์สำหรับ popup
save เป็นขื่อ link.php
Code (PHP)
<html>
<head>
<script>
function getCheckedValue(radioObj) {
if(!radioObj)
return "";
var radioLength = radioObj.length;
if(radioLength == undefined)
if(radioObj.checked)
return radioObj.value;
else
return "";
for(var i = 0; i < radioLength; i++) {
if(radioObj[i].checked) {
return radioObj[i].value;
}
}
return "";
}
</script>
</head>
<body>
<form name="radioExampleForm" method="get" action="" onsubmit="return false;">
<tr>
<td align="center"><input type="radio" name="pic" id="n" value="AAAAAA" ></td>
<td align="center"><input type="radio" name="pic" id ="n" value="BBBBBB"></td>
<td align="center"><input type="radio" name="pic" id ="n" value="CCCCCC"></td>
</tr>
<tr>
<td align="center"> </td>
<td align="center">
<input type="submit" name="Submit" value="O.K." onClick="opener.document.all.name.value=getCheckedValue(document.forms['radioExampleForm'].elements['pic']);window.close();">
<input type="reset" name="btnreset" value="Reset"></td>
</tr>
</table>
<p> </p>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-07-27 17:37:37 |
By :
killyu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แจ่มครับ
|
|
|
|
|
Date :
2011-07-27 21:37:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|