|
|
|
ทำ _blank ใน JavaScript ทำอย่างไรคับ ผมมีปัญหา คือ ผมอยากได้แบบ กดแล้วมีหน้าใหม่ขึ้นมาเรยไม่ทับหน้าเก่าคับ |
|
|
|
|
|
|
|
document.location ไม่น่าจะสามารถใส่ _blank ได้ครับ
|
|
|
|
|
Date :
2011-04-28 16:14:17 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี trick คือทำฟอร์มเปล่าๆ ไว้แล้วใส่ target ให้มันแล้วใช้ Javascript Submit Form นั้น
|
|
|
|
|
Date :
2011-04-28 22:57:56 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือไม่ก็ใช้ Popup ครับ
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-04-29 09:31:36 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|