2010-05-27 65 views
0

我的彈出窗口顯示水平卷軸,如何刪除它?我使用Mozilla 3.6.3,在Windows PHP,我有HREF錨標籤下面給出:我的彈出窗口顯示水平滾動條,如何刪除它?

<a href="javascript:popupWindow('http://example/english/images/buttons/button_invoice.gif"></a> 

但是當我點擊這個鏈接上顯示一個水平滾動條我彈出窗口..所以幫助我刪除此水平滾動條...

修訂

window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=650,height=500,screenX=150,screenY=150,top=150,left=150') 
在popWindow功能

如何溢出-X;隱藏可以被附加到這個?

回答

1

指定width它:

<a href="javascript:popupWindow('http://example/english/images/buttons/button_invoice.gif', 600"></a> 

function popupWindow(url, width) 
{ 
    window.open('url', 'win_name', 'width=' + width); 
} 

而且取決於你的佈局,你可以使用CSS,以及:

<style type="text/css"> 
    overflow-x:hidden; 
</style> 
+0

u能闡述 '溢出-X' 部分,其中i必須這樣做,請給它的例子語法.. – 2010-05-27 06:58:17

+0

@OM永恆:你需要把這種風格放在你打開的彈出窗口,你應該在該頁面指定發票圖像。 – Sarfraz 2010-05-27 07:00:21

+0

@OM永恆:我注意到你正在打開一個圖像,看起來圖像的寬度比你打開的窗口的寬度大。 – Sarfraz 2010-05-27 07:01:02