|
|
|
ขอถามคะ ถ้ามี Code แบบนี้พอคลิกแล้วอยากให้มันเปิดอีกหน้านึงให้นะคะ หรือไม่ก็ให้เปิดเป็น pop up ก็ได้ จะต้องแก้ไขตรงไหนคะ |
|
|
|
|
|
|
|
ตามชื่อ function เลยครับ
Code (PHP)
<script>
function popup(){
window.open('Data.php?Code='+document.getElementById('Code').value);
}
function newtab()
{
window.open('Data.php?Code='+document.getElementById('Code').value,"","width=800,height=600");
}
</script>
<a href="javascript:popup();"><input name="Code"type="text" id="Code" value="test"></a>
<a href="javascript:newtab();"><input name="Code"type="text" id="Code" value="test"></a>
|
|
|
|
|
Date :
2014-03-13 00:31:53 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง Test แล้วมันไม่ไปนะคะ ขึ้น Tab ใหม่ก็ไม่ขึ้นให้คะ Pop UP ก็ไม่ขึ้นคะ
|
|
|
|
|
Date :
2014-03-13 10:34:54 |
By :
แอน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รู้สึกว่า code ด้านบนจะมีปัญหาแค่ ie นะครับ ส่วน firefox กับ chrome ใช้ได้ปกติ ที่บอกว่าไม่ขึ้นนี่ ie รึป่าวครับ
|
|
|
|
|
Date :
2014-03-17 08:47:49 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้แบบนี้แทนละกันครับ ได้ทุก browser
Code (PHP)
<script>
function newtab(){
window.open('Data.php?Code='+document.getElementById('Code').value);
}
function popup()
{
window.open('Data.php?Code='+document.getElementById('Code').value,"","width=800,height=600");
}
</script>
<input name="Code" type="text" id="Code" value="popup" onclick="popup();">
<input name="Code" type="text" id="Code" value="newtab" onclick="newtab();">
|
|
|
|
|
Date :
2014-03-17 08:53:36 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|