Set IFrame allowfullscreen with javascript

人走茶凉 提交于 2019-12-23 07:35:28

问题


I tried to set allowfullscreen attribute to the iframe, but it doesn't work:

iframe.allowFullScreen = true

I checked it with chrome -> inspect element, but the iframe has no allowfullscreen attribute, after this code.

Thanks in advance,


回答1:


iframe.setAttribute('allowFullScreen', '')



来源:https://stackoverflow.com/questions/11034473/set-iframe-allowfullscreen-with-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!