Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 891 | Rev 911 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

#使用命名空間qbpwcf
namespace qbpwcf;

#匯入外部套件
include("../../allInOne.php");

?>

<button type="button" id="run">run</button>
<div id="runRes"></div>

<script>
$('#run').on('click',function()
{
        $.ajax
        ({
                url: 'createMultiIframe4.php',
                type:'GET',
                async:true,
                data:
                {
                        
                },
                success:function(data, status)
                {
                        var runRes= document.getElementById('runRes');
                        runRes.append(data);
                        
                        setTimeout(function()
                        { 
                                document.location.href='createMultiIframe1.php';
                        }, 3000);
                        
                }
        });
});
</script>