reload parent window from within an iframe

后端 未结 4 692
轮回少年
轮回少年 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:10

    dont bother! why use iframes at all if you are using ajax.

    just load the login using

    $("where you want to load the content here").load("src of your iframe here");

    //load via ajax
    $("div").load("login.php");
    

    much simpler and alot more elegant.

提交回复
热议问题