Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 915 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 liveuser 1
<?php
2
 
3
#使用命名空間qbpwcf
4
namespace qbpwcf;
5
 
6
#匯入外部套件
7
include("../../allInOne.php");
8
 
9
?>
10
 
11
<button type="button" id="run">run</button>
12
<div id="runRes"></div>
13
 
14
<script>
15
$('#run').on('click',function()
16
{
17
	$.ajax
18
	({
19
		url: 'createMultiIframe4.php',
20
		type:'GET',
21
		async:true,
22
		data:
23
		{
24
 
25
		},
26
		success:function(data, status)
27
		{
28
			var runRes= document.getElementById('runRes');
29
			runRes.append(data);
30
 
31
			setTimeout(function()
32
			{ 
33
				document.location.href='createMultiIframe1.php';
34
			}, 3000);
35
 
36
		}
37
	});
38
});
39
</script>