- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
js中json使用全解(JSON uses full solution in JS)
js中json使用全解(JSON uses full solution in JS)
The use of JS in JSON solutions
The use of JSON for data transmission
First, the significance of the choice of
In asynchronous applications in sending and receiving the information, you can choose YISHION XML as the data format and text. In order to make better use of the Ajax, we will learn a useful data format of JavaScript Object Notation (JSON), and how to use it more easily move data and objects in your application. JSON is a simple data exchange format, in some ways, and it is very similar to XML, but XML is more simple, the syntax of JSON reduced the difficulty of data exchange, and provides a pseudo object mode.
Java - JavaScript (JSON object object data format)
Two, JSON
Simply speaking, JSON can convert a set of data representation in the JavaScript object to a string (pseudo object), then you can easily transfer the string in the function, or in a string from a Web client application, asynchronous transfer to the server program. This string looks a bit odd (later will see several examples), but JavaScript is very easy to explain it, but JSON can be said than name / value of the structure is more complex. For example, can be expressed in an array of objects and complex, rather than just a simple list of keys and values.
A JSON object
1, using the JavaScript syntax to create objects
/ / define a function as a constructor
Fucntion person (name, sex)
{
T=name;
This.sex=sex;
}
/ / create an instance of
Var p=new Person (three, male);
The output / Person instance
Alert ();
Note: the objects created by the way of the general script object
2, from the JavaScript1.2 to create the objects have a more convenient syntax (Json syntax), as follows:
Var obj={name: three, sex: male};
Alert (obj.sex);
On the array
1, early JavaScript array
Var arr=new (Array);
Arr[0]= a;
Arr[1]= BBC
We can also create an array in the following way
Var arr=new Array (a, BBC);
2, using the JSON syntax, you can create an array in the following way
您可能关注的文档
- 14福师《教育统计与测量评价》在线作业一(14 Fu division education statistics and measurement evaluation online homework).doc
- 14福师《教育统计与测量评价》在线作业二(14 Fu division education statistics and measurement evaluation online homework two).doc
- 14秋《人际交往与沟通艺术》(14 Autumn Art of human communication and communication).doc
- 14种美味虾餐制作方法揭密--虾的做法大全(14 kinds of delicious shrimp meal production method -- inside shrimp practices Daquan).doc
- 15 并列连词(15 coordinate conjunctions).doc
- 15《古代诗歌四首》教案(15, ancient poetry four lesson plan).doc
- 15the little match girl 拇指姑娘(15the卖火柴的小女孩拇指姑娘).doc
- 15分钟有氧运动 丰胸又收腹(Aerobic exercise and breast abdomen for 15 minutes).doc
- 135个变态网名(135 freak names).doc
- 13过秦论(13, over Qin theory).doc
文档评论(0)