blob: 6ef69bd396d5e2b8b1c7ea35406380825626d4eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
GET test
responseText
<?xml version="1.0"?>
<!DOCTYPE doc [
<!ATTLIST d id ID #IMPLIED>
]>
<doc>
<foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
<d id="id3">Three</d>
</doc>
responseXML serialized
<?xml version="1.0"?><!DOCTYPE doc><doc>
<foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
<d id="id3">Three</d>
</doc>
getAllResponseHeaders()
status
0
statusText
readyState
4
Event information
Event object: [object ProgressEvent]
Event properties:
AT_TARGET : '2'
BLUR : '8192'
BUBBLING_PHASE : '3'
CAPTURING_PHASE : '1'
CHANGE : '32768'
CLICK : '64'
DBLCLICK : '128'
DRAGDROP : '2048'
FOCUS : '4096'
KEYDOWN : '256'
KEYPRESS : '1024'
KEYUP : '512'
MOUSEDOWN : '1'
MOUSEDRAG : '32'
MOUSEMOVE : '16'
MOUSEOUT : '8'
MOUSEOVER : '4'
MOUSEUP : '2'
NONE : '0'
SELECT : '16384'
bubbles : 'false'
cancelBubble : 'false'
cancelable : 'false'
currentTarget : '[object XMLHttpRequest]'
deepPath : 'function deepPath() { [native code] }'
defaultPrevented : 'false'
eventPhase : '2'
initEvent : 'function initEvent() { [native code] }'
isTrusted : 'true'
lengthComputable : 'true'
loaded : '0'
path : ''
preventDefault : 'function preventDefault() { [native code] }'
relatedTargetScoped : 'false'
returnValue : 'true'
scoped : 'true'
srcElement : '[object XMLHttpRequest]'
stopImmediatePropagation : 'function stopImmediatePropagation() { [native code] }'
stopPropagation : 'function stopPropagation() { [native code] }'
target : '[object XMLHttpRequest]'
total : '0'
type : 'load'
|