我愿利用XUL和JSON:
<?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? 我是否进口一些名称空间来利用这一功能?