工作需要用到JSON格式的省市列表,搜了一下没找到合适的,就从百度的JS里提取出来
过程很简单,将下面的代码保存成一个html文件,用浏览器打开这个文件就可以看到了
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="https://passport.baidu.com/js/sitedata_bas.js" charset="GBK"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#china_cities").text(JSON.stringify(arrCity));
});
</script>
<title>中国城市列表JSON数组</title>
</head>
<body>
<p></p>
</body>
</html>
--------------------------------------分割线 --------------------------------------
Linux下JSON库的编译及代码测试
--------------------------------------分割线 --------------------------------------