|
|
|
ต้องการสร้างปุ่ม แล้วขึ้น popup ต้องเขียนโค้ดที่ปุ่มยังไงหรอคะ ^ ^ |
|
|
|
|
|
|
|
คำสั่งในการสร้าง window popup จะใช้ javascript ค่ะ
window.open("sample.html",null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
จะให้คลิกปุ่มแล้วเปิด popup ก็ให้เขียนที่ even onclick ของปุ่มค่ะ
ตัวอย่าง
Code (PHP)
<input type="button" name="open" value="open" onclick="open_popup('sample.html')" />
<script>
function open_popup(url){
window.open(url,null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
}
</script>
|
|
|
|
|
Date :
2010-01-12 08:26:52 |
By :
ultrasiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
<a href="javascript:MM_openBrWindow('pop.php?id=<?=$id?>','','width=100,height=100')"><img src="http://www.expert2you.com/images/logo.gif" border="0" ></a>
</body>
</html>
|
|
|
|
|
Date :
2010-01-12 08:34:04 |
By :
panyapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|