Home > Article > Backend Development > Jquery reads xml
Please indicate the source when reprinting: Jquery reads 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); });
The above is the content of Jquery reading xml. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!