รบกวนด้วนครับ
input ข้อมูลบางส่วนที่หน้าหลัก กดsearch แล้ว pop up อีกหน้าขึ้นมา ซึ่งผลการsearchอาจจะมีหลาย record และ ถ้ากดที่ record ใหนก็จะส่งค่ากลับมาที่ form หลัก แล้วก็ปิดหน้าผลsearch ลง
<script type="text/javascript">
function popup(url,name,windowWidth,windowHeight){
myleft=(screen.width)?(screen.width-windowWidth)/2:100;
mytop=(screen.height)?(screen.height-windowHeight)/2:100;
properties = "width="+windowWidth+",height="+windowHeight;
properties +=",scrollbars=yes, top="+mytop+",left="+myleft;
window.open(url,name,properties);
}
</script>
<a href="javascript:popup('show.html','',350,150)">SHOW pop up</a>
show.html Code (PHP)
<script language="JavaScript">
function closeRefresh() {
window.opener.location.reload();//รีเฟรชหน้าหลัก
self.close();//ปิด pop up
}
</script>
<input type="submit" value="Close" onclick="closeRefresh();">