-
Notifications
You must be signed in to change notification settings - Fork 0
/
javascript-native-json.html
140 lines (122 loc) · 4.17 KB
/
javascript-native-json.html
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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Testing native JSON</title>
<link rel="stylesheet" href="css/base.css" type="text/css" media="screen">
<script type="text/javascript">
//alert(Object.getPrototypeOf(document));
var someString = " Monkeys like bananas";
//alert(someString.trim());
// trimLeft, trimRight
var JSONString = '{"name" : "Robert", "lastName" : "Nyman"}';
//alert(JSON.parse(JSONString));
var obj = {
name : "Robert",
lastName : "Nyman"
};
//alert(JSON.stringify(obj));
</script>
</head>
<body>
<div id="container">
<h1>
Testing native JSON
<a href="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>
<div class="navigation">
<h2>Content</h2>
<ul>
<li>
<a href="#native-json">Native JSON</a>
<ul>
<li><a href="#native-json-parse">JSON.parse</a></li>
<li><a href="#native-json-stringify">JSON.stringify</a></li>
</ul>
</li>
</ul>
</div>
<h2 id="native-json">Native JSON</h2>
<div class="section">
<h3 id="native-json-parse">JSON.parse</h3>
<pre class="brush: js">var JSONString = '{"name" : "Robert", "lastName" : "Nyman"}',
JSONObject = JSON.parse(JSONString);</pre>
<p>
<strong>Result:</strong>
<span id="native-json-parse-results"><span class="failed">FAILED</span></span>
</p>
<script type="text/javascript">
(function () {
var JSONString = '{"name" : "Robert", "lastName" : "Nyman"}',
JSONObject = JSON.parse(JSONString);
document.getElementById("native-json-parse-results").innerHTML = JSONObject;
})();
</script>
<h4>Works in:</h4>
<ul class="browsers">
<li class="browser">
<img alt="Internet Explorer" src="images/ie.png"> 8.0+
</li>
<li class="browser">
<img alt="Firefox" src="images/firefox.png"> 3.5+
</li>
</ul>
</div>
<div class="section">
<h3 id="native-json-stringify">JSON.stringify</h3>
<pre class="brush: js">var obj = {
name : "Robert",
lastName : "Nyman"
},
JSONString = JSON.stringify(obj);</pre>
<p>
<strong>Result:</strong>
<span id="native-json-stringify-results"><span class="failed">FAILED</span></span>
</p>
<script type="text/javascript">
(function () {
var obj = {
name : "Robert",
lastName : "Nyman"
},
JSONString = JSON.stringify(obj);
document.getElementById("native-json-stringify-results").innerHTML = JSONString;
})();
</script>
<h4>Works in:</h4>
<ul class="browsers">
<li class="browser">
<img alt="Internet Explorer" src="images/ie.png"> 8.0+
</li>
<li class="browser">
<img alt="Firefox" src="images/firefox.png"> 3.5+
</li>
</ul>
</div>
</div>
<script type="text/javascript" src="syntax-highlighter/scripts/shJavaScript.js"></script>
<script type="text/javascript">
SyntaxHighlighter.all();
</script>
<script type="text/javascript">
var gaJsHost = (("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>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-56164-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<script type="text/javascript">
<!--
var sc_project=593937;
var sc_partition=4;
var sc_security="175a1fec";
//-->
</script>
<script type="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script><noscript><div class="statcounter"><a class="statcounter" href="http://www.statcounter.com/"><img class="statcounter" src="http://c5.statcounter.com/counter.php?sc_project=593937&java=0&security=175a1fec" alt="free geoip" /></a></div></noscript>
</body>
</html>