美文网首页
手机端弹窗返回原页面

手机端弹窗返回原页面

作者: kate2020 | 来源:发表于2017-03-28 16:18 被阅读44次

    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
      }
    }
    

    相关文章

      网友评论

          本文标题:手机端弹窗返回原页面

          本文链接:https://www.haomeiwen.com/subject/kpgjottx.html