jQuery重装xml doc需要浏览器关闭吗?

时间:2014-12-23 14:23:14

标签: javascript jquery ajax xml

我有一些代码正在使用jQuery $.ajax来提取xml值但是一旦应用程序在浏览器中运行,对xml .doc和后续浏览器刷新的任何更改都不会显示新保存的xml价值xmlImagePath

如何在浏览器刷新时强制使用新的xml值?

    $.ajax({
        type: "GET",
        url: "/Images/referal_Image_Config.xml",
        dataType: "xml",
        success: function (xml) {
            //read xml file
            $(xml).find('image').each(function () {
                if ($(this).attr('active') == 'true') {
                    var xmlImagePath = $(this).find('pathName').text();

1 个答案:

答案 0 :(得分:1)

cache的{​​{1}}属性设置为$.ajax

false