zoukankan      html  css  js  c++  java
  • js 调用json

    url = "/plus/API/";
          try {
              // 此处是可能产生例外的语句
            } catch(error) {
              // 此处是负责例外处理的语句
            } finally {
              // 此处是出口语句
            }

       postData = {k:2}; $.post(url, postData, function(result) { console.log(result);
             try {
               var str = JSON.parse(result);
             } catch(error) {
             }
             alert(str["0"]["section_name"]);
            for(var i in str) {
               if(str[i] == 0) {
                 break;
               }
               $("#keshi").append(
                "<option value='"+str[i]["section_name"]+"'>"+str[i]["section_name"]+"</option>"
               );
            }
       });

      

  • 相关阅读:
    python函数
    python文件IO操作
    LAMP项目上线
    linux下的小工具
    linux下自有服务
    Lesson_Swift2
    枚举
    使用文件流下载附件
    Global中的Timer计时器
    IE11下的NPOI导出提示__doPostBack未定义解决方案
  • 原文地址:https://www.cnblogs.com/bubaya/p/7891579.html
Copyright © 2011-2022 走看看