日期:2014-05-16 浏览次数:20651 次
    function add_select(){
        $.post("../../../../AddXiangmu.asmx/SelectOnexm", function (xml) {
            var se = "";
            var i = 0;
            $(xml).find('OP_NAME').each(function () {
                sel += "<option>" + $(this).text() + "</option>"
            });
            /*$(xml.find("Table1").each(function (i) {
            se += "<option>" + $(xml).find("OP_NAME").text() + "</option>"
            i++;
            }))*/
            $("#tw").find('select').html(se);
        })
    }