您的位置:首页 > 技术中心 > 其他 >

Jquery读取xml

时间:2017-02-15 15:51

转载请注明来源:Jquery读取xml

xml:

<forStatus>
  <values>
    <content>全勤</content>
    <el>F</el>
  </values>
  <values>
    <content>出差</content>
    <el>D</el>
  </values>
  <values>
    <content>差旅途中</content>
    <el>T</el>
  </values>
</forStatus>


Jquyery

var option = "";

$.get('../Handler/AttendanceStatus.xml', function (d) {
                $(d).find('values').each(function () {
                    var $val = $(this);
                    var el = $val.find("el").text();
                    var des = $val.find("content").text();
                    option += "<option value=\"" + el + "\">" + des + "</option>";
                    //alert(option);
                });
                strAttendanceStatusSelect = "<select id=\"selItem\" name=\"Item\">" + option + "</select>";
                //alert(strAttendanceStatusSelect);
            });

以上就是Jquery读取xml的内容,更多相关内容请关注PHP中文网(www.gxlsystem.com)!

热门排行

今日推荐

热门手游