当我为在我的应用程序中播放的视频放置 iframe 时,jQuery UI 标题上的后退按钮不再起作用。
当我从代码中取出 iframe 时,它会再次正常运行。想知道是否有人知道这里的修复是打开 iframe 的页面的代码。
<div data-role="page" id="about" data-add-back-btn="true" data-back-btn-text="Back" >
<div data-role="header" >
<h1>About</h1>
</div><!-- /header -->
<div data-role="content">
<div id ="aboutsection">
<div id="about-logo"><img src="images/small-logo.png" /></div>
<div id="video-thumb">
<a href="#popupVideo" data-rel="popup" data-position-to="window"><img src="images/video-thumb.png"/></a>
<div data-role="popup" id="popupVideo" data-tolerance="15,15" class="ui-content">
<iframe src="
http://player.vimeo.com/video/54553882?portrait=0" seamless></iframe>
</div>
</div><!--/video-thumb-->
<p>© Be Active North-East</p>
</div><!--/aboutsection-->
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
<h4>Be Active North East </h4>
</div><!-- /footer -->