|
|
|
การใช้คำสั่ง window.open(); และ window.close(); ซึ่งอยู่คนละไฟร์กัน |
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2010-08-06 15:32:15 |
By :
kumthorn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var newW = window.open( url , option);
อีกไฟล์ ต้องเปน Window ใหม่ ที่ต่อเนื่องกัน เช่น
var win2 = window.open( url2, option);
ถ้าให้ win2 ปิด newW จะเขียนดังนี้
function closeNewW()
{
if(window.opener && window.opener.newW) {
try {
window.opener.newW.close();
}
catch(e) {
}
}
}
|
|
|
|
|
Date :
2010-09-02 13:07:47 |
By :
k |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|