reload parent window from within an iframe

后端 未结 4 693
轮回少年
轮回少年 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条回答
  •  旧时难觅i
    2020-12-03 12:01

    You can use:

    window.parent.location.href = "Create?Param=value";
    

    Or:

    window.parent.location.href = "http://www.stackoverflow.com";
    

提交回复
热议问题