- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript-native-json.html
More file actions
Latest commit
140 lines (122 loc) · 4.17 KB
/
Copy pathjavascript-native-json.html
File metadata and controls
140 lines (122 loc) · 4.17 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<metahttp-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Testing native JSON</title>
<linkrel="stylesheet" href="css/base.css" type="text/css" media="screen">
<scripttype="text/javascript">
//alert(Object.getPrototypeOf(document));
varsomeString=" Monkeys like bananas";
//alert(someString.trim());
// trimLeft, trimRight
varJSONString='{"name" : "Robert", "lastName" : "Nyman"}';
//alert(JSON.parse(JSONString));
varobj={
name : "Robert",
lastName : "Nyman"
};
//alert(JSON.stringify(obj));
</script>
</head>
<body>
<divid="container">
<h1>
Testing native JSON
<ahref="index.html"> - To index of all tests and compatibility tables</a>
</h1>
<p>Below I have tested the native JSON features. The code below is also run immediately as you load the page, so you will see the actual results as well. Below each test is the web browsers it works in, and the minimum version of it required.</p>
<divclass="navigation">
<h2>Content</h2>
<ul>
<li>
<ahref="#native-json">Native JSON</a>
<ul>
<li><ahref="#native-json-parse">JSON.parse</a></li>
<li><ahref="#native-json-stringify">JSON.stringify</a></li>
</ul>
</li>
</ul>
</div>
<h2id="native-json">Native JSON</h2>
<divclass="section">
<h3id="native-json-parse">JSON.parse</h3>
<preclass="brush: js">var JSONString = '{"name" : "Robert", "lastName" : "Nyman"}',
JSONObject = JSON.parse(JSONString);</pre>
<p>
<strong>Result:</strong>
<spanid="native-json-parse-results"><spanclass="failed">FAILED</span></span>
</p>
<scripttype="text/javascript">
(function(){
varJSONString='{"name" : "Robert", "lastName" : "Nyman"}',
JSONObject=JSON.parse(JSONString);
document.getElementById("native-json-parse-results").innerHTML=JSONObject;
})();
</script>
<h4>Works in:</h4>
<ulclass="browsers">
<liclass="browser">
<imgalt="Internet Explorer" src="images/ie.png"> 8.0+
</li>
<liclass="browser">
<imgalt="Firefox" src="images/firefox.png"> 3.5+
</li>
</ul>
</div>
<divclass="section">
<h3id="native-json-stringify">JSON.stringify</h3>
<preclass="brush: js">var obj = {
name : "Robert",
lastName : "Nyman"
},
JSONString = JSON.stringify(obj);</pre>
<p>
<strong>Result:</strong>
<spanid="native-json-stringify-results"><spanclass="failed">FAILED</span></span>
</p>
<scripttype="text/javascript">
(function(){
varobj={
name : "Robert",
lastName : "Nyman"
},
JSONString=JSON.stringify(obj);
document.getElementById("native-json-stringify-results").innerHTML=JSONString;
})();
</script>
<h4>Works in:</h4>
<ulclass="browsers">
<liclass="browser">
<imgalt="Internet Explorer" src="images/ie.png"> 8.0+
</li>
<liclass="browser">
<imgalt="Firefox" src="images/firefox.png"> 3.5+
</li>
</ul>
</div>
</div>
<scripttype="text/javascript" src="syntax-highlighter/scripts/shJavaScript.js"></script>
<scripttype="text/javascript">
SyntaxHighlighter.all();
</script>
<scripttype="text/javascript">
vargaJsHost=(("https:"==document.location.protocol) ?
"https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+
"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<scripttype="text/javascript">
varpageTracker=_gat._getTracker("UA-56164-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<scripttype="text/javascript">
<!--
varsc_project=593937;
varsc_partition=4;
varsc_security="175a1fec";
//-->
</script>
<scripttype="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script><noscript><divclass="statcounter"><aclass="statcounter" href="http://www.statcounter.com/"><imgclass="statcounter" src="http://c5.statcounter.com/counter.php?sc_project=593937&java=0&security=175a1fec" alt="free geoip" /></a></div></noscript>
</body>
</html>