我在 iframe 中加载了一个页面,其中可能包含音频/视频标签。但是在 iPad 中,我注意到隐藏 iframe 并再次显示它会消失标签。
<button onclick="toggle();">Toggle Iframe</button>
<iframe id='page' src='http://www.quackit.com/common/html_editor_form.cfm?contentFile=../html_5/tags/inc_html_audio_tag.cfm' width="100%" frameborder='1'></iframe>
<script>
function toggle() {
var $el = $('#page');
if ($el.is(':visible')) {
$el.hide();
} else {
$el.show();
}
}
</script>
演示:http: //jsfiddle.net/codef0rmer/sQVCd/
有什么解决办法吗?