jquery读取xml文件

来源:互联网 发布:unity3d 内嵌网页插件 编辑:程序博客网 时间:2024/06/16 13:36
function StandardTaxRate(){    $.ajax({        url: "/Resource/salaryTaxRate.xml",        dataType: 'xml',        type: 'GET',        timeout: 2000,        error: function(xml)        {            alert("加载XML 文件出错!");        },        success: function(xml)        {            $(xml).find("taxrate").each(function(i)            {                var oid = $(this).attr("id");                var lower = $(this).children("lower").text();                var upper = $(this).children("upper").text();                var rate = $(this).children("rate").text();                var buckle = $(this).children("buckle").text();                ///后续操作。。。            });        }    });}

原创粉丝点击