javascript json的使用(以及中文亂碼的解決亂碼)

來源:互聯網
上載者:User

對於js使用json,首先到官網拷貝json.js檔案,地址http://www.json.org/js.html

然後在頁面引入即可使用:

<script type="text/javascript" src="json.js"></script>

測試一下能不能用,可以寫個jsp頁面,然後給按鈕加個方法,彈出處理後的json字串。

對於中文亂碼,改變編碼方式為:GB2312。

可以在頁面直接改,也可以在response返回時改。

頁面的改法:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312">
</head>

java代碼response返回改法:

response.setHeader("Cache-Control", "no-cache");
  response.setContentType("text/json;charset=gb2312");

下面看看代碼吧,介紹了字串與json對象相互轉化:(本例用到了jquery,只不過調用了一個按鈕單擊事件,你可以改成onclick)

<%@ page language="java"  pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=GB2312"><title>Insert title here</title><script type="text/javascript" src="json.js"></script><script type="text/javascript" src="jquery-1.6.2.js"></script><style>  button { margin:4px; cursor:pointer; }  input { margin:4px; color:blue; }  </style></head><body><div>    <button id="button3">json</button>  </div>  <input type="text" value="click a button" /><script>/////////#button3    $("#button3").click(function () {    ///json對象轉化成j字串--toJSONString()///字串轉化成json對象--eval('(' + str + ')');///取json對象裡面某個屬性的值用點(例如myObject.bindings[0].time) var myJSONObject = {"bindings": [        {"nnn": "春天", "time": "標示", "add": "北京"},        {"ircEvent": "好", "method": "方法", "regex": "上海"}    ] };    alert("json對象取屬性值\n"+myJSONObject.bindings[0].nnn );    ///json對象轉化成json字串方法:var myJSONtext=myJSONObject.toJSONString();alert("json對象轉化成字串,toJSONString\n"+myJSONtext);var myJSONtext2=JSON.stringify(myJSONObject);alert("json對象轉化成字串,用全域的內建對象JSON.stringify\n"+myJSONtext2);    ///json字串轉化成json對象方法:var myJSONObject2 = eval('(' + myJSONtext + ')');var myJSONObject3=myJSONtext.parseJSON();var myJSONObject4=JSON.parse(myJSONtext);alert("字串轉化成json對象,用eval\n"+myJSONObject2.bindings[0].time );alert("字串轉化成json對象,用parseJSON\n"+myJSONObject3.bindings[0].add );alert("字串轉化成json對象,用全域的內建對象JSON.parse\n"+myJSONObject4.bindings[0].nnn );    /////////////////    });</script></body></html>   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.