|
|
|
อยากถามเรื่อง javascript popup ในบทเรียนอะคับ ครือว่าผมอยากให้คลิกที่ปุ่มแล้วมี page ใหม่ขึ้นมาแบบในบทเรียน |
|
|
|
|
|
|
|
Code (popup1.html)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
<script language="JavaScript">
function fncOpenPopup()
{
window.open('popup2.html','popup-name','width=700,height=500,toolbar=0,menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
</script>
</head>
<body>
<form name="frmMain" action="" method="post">
<input type="button" name="btnOpen" value="OpenPopup" OnClick="fncOpenPopup();">
</form>
</body>
</html>
Code (popup2.html)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<form name="frmMain" action="" method="post">
<center>
<h1>Welcome to ThaiCreate.Com</h1>
<input type="button" name="btnClose" value="Close" OnClick="window.close();">
</center>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-06-15 06:38:45 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|