我試圖將allowFullScreen屬性設置爲iframe的,但它不工作:設置的IFrame的allowFullScreen使用javascript
iframe.allowFullScreen = true
我鉻檢查了它 - >檢查元素,但在iframe沒有的allowFullScreen屬性,在此代碼之後。
由於提前,這取決於瀏覽器
我試圖將allowFullScreen屬性設置爲iframe的,但它不工作:設置的IFrame的allowFullScreen使用javascript
iframe.allowFullScreen = true
我鉻檢查了它 - >檢查元素,但在iframe沒有的allowFullScreen屬性,在此代碼之後。
由於提前,這取決於瀏覽器
iframe.setAttribute('allowFullScreen', '')
介意'setAttribute'能在IE中失敗。爲此,一種可能的解決方案是將doctype設置爲「<!DOCTYPE html>」和「'(取自http:// stackoverflow.com/questions/15329292/replace-setattribute-with-ie-compatible-script) – fadomire
,它可能是'mozAllowFullScreen'或'webkitAllowFullScreen' – Esailija
'iframe.webkitAllowFullScreen = TRUE;也沒有工作 –