2010-02-01 41 views

回答

6

.css({height:'100%',width:'100%', position:'fixed',top:0,left:0});

您也可以使用動畫。

.animate({height:'100%',width:'100%',position:'absolute',top:0,left:0});

請看here以供參考。

+1

外{{}應該是(),但在其他方面是正確的。 – 2010-02-01 04:13:14

+1

IE6不支持「固定」定位。雖然「絕對」可能已經足夠。 – 2010-02-01 04:14:11

+0

嗨mendy,我是新來的JQuery,我也需要實現相同的功能......你可以請提供語法來使用動畫? – Radhi 2010-02-01 04:14:21

0

只爲您的信息:如果你的網頁的iframe下運行,那麼你必須設置mozallowfullscreenwebkitallowfullscreen。這些屬性允許內容以全屏方式打開。

<iframe src="testA.html" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> 
相關問題