javascript ile yükleme işlemi

2 Cevap php

i page.php bir iframe ile formu gönderdikten sonra hy i, bir form ile bir index.php var, bir yükleme süreci görünür

İlk işlevi yürütmek zaman page.php i javascript index.php bir işlevi yürütmek istiyorum, sayfa görüntülenmiştir kim!

İkinci işlevi yürütmek zaman ben javascript index.php başka fonksiyonunu çalıştırmak istiyorum

Bu kodu nasıl?

if () {
        //execute a function but meanwhile send a response to index.php like this:
        echo '<script language="javascript" type="text/javascript">window.top.window.function();</script>';
        function ();

        if () {
           //execute a function but meanwhile send a response to index.php like this:
           echo '<script language="javascript" type="text/javascript">window.top.window.function();</script>';
            function ();

        } else {
            echo $something;
        }

    } else {
       echo $something;
    }

2 Cevap

page.php kullanım parent.functionname içinde

Ör.

index.php) Eğer parent.show gibi page.php erişebileceğiniz bir fonksiyonu show () (var

gibi bu:

echo '<script language="javascript" type="text/javascript">parent.show();</script>';

?