0
我想用XUL和JSON這樣的:使用XUL和JSON,JSON.Parse功能不工作
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="yourwindow" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:h="http://www.w3.org/1999/xhtml">
<button value="click" oncommand="jsonTest()" />
<script type="text/javascript">
<![CDATA[
// put some js code here
function jsonTest(){
var funcionarios =
{
"Marconildo":
{
"url": "http://www.google.com.br/",
"idade": 34
}
};
var funcionario = JSON.parse(funcionarios);
alert(funcionario.Marconildo);
}
]]>
</script>
</window>
但它不工作...什麼是錯的? JSON.parse?我會導入一些命名空間來使用這個功能嗎?
當我使用JSON.parse?你有什麼樣的例子嗎? – user916933 2012-01-12 15:48:35
如果你有一個JSON字符串,你想轉換成JSON對象,則可以使用JSON.parse。你可以通過這個職位的例子。 http://stackoverflow.com/questions/8738070/how-to-count-object-in-javascript/8738080#8738080 – Pavan 2012-01-12 16:55:55