手机端弹窗返回原页面

2017-03-28  本文已影响44人  kate2020

h5应用视频通过弹窗播放之后,点击返回,回到之前的页面
解决方案:

var truefalse=0
window.addEventListener('hashchange',function(){
  if(truefalse>1){
    location.hash=''
    $('#modal').css('display','none')
  }
})
$('#modalCtrl').click(function(){
  truefalse=1
  location.hash='video'
  $('#modal').css('display','block')
  var iframe='<iframe class="collect-video" frameborder="0" width="100%" height="100%" src="http://v.qq.com/iframe/player.html?vid=g0374ys0u6p&tiny=0&auto=0" allowfullscreen></iframe>';
  $('#modal').append(iframe)
  setTimeout(function(){
    truefalse=2
  }
}
上一篇 下一篇

猜你喜欢

热点阅读