Subversion Repositories php-qbpwcf

Rev

Details | Last modification | View Log | RSS feed

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