reload parent window from within an iframe

后端 未结 4 684
轮回少年
轮回少年 2020-12-03 11:52

I have my login page in an iframe and wished to reload the parent window using ajax and jquery from within iframe without refreshing but i\'m getting errors like this

(         


        
4条回答
  •  攒了一身酷
    2020-12-03 12:16

    parent.location.href=parent.location.href
    

    gives a smoother result than

    parent.location.reload()
    

    the latter forces a complete reload while the first seems to update more effectively almost like ajax.

提交回复
热议问题