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