0

ASP.NET MVC 应用程序。

只有IE有问题。

考虑这两个功能:

function refreshParameters() {
                doRefresh('#loading-production-parameters', '#partial-rows-parameters', '@VirtualPathUtility.ToAbsolute("~/home/ProductionParameters")');
            }
            //
            //
            //
function refreshTotals() {
                doRefresh('#loading-production-totals', '#partial-rows-totals', '@VirtualPathUtility.ToAbsolute("~/home/ProductionTotals")');
            }

脚本和事件处理程序的开头:

$(function () {
            //
            //Init
            //Initial Tasks
            //
            refreshParameters();
            refreshTotals();
            //
            // Events
            //
            $('#yla-debug').click(function (e) {
                refreshParameters();
                refreshTotals();
            });

奇怪的是,它refreshParametersrefreshTotals页面加载时运行。

但在点击事件处理程序上,他们没有。

如果我在事件处理程序中发出警报,它会正常启动,萤火虫中的控制台也不会显示任何错误。

有任何想法吗?

PS:使用事件的元素的 html 标记:

<div id="yla-debug" class="panel panel-default">
    <div class="panel-heading clearfix">
        <h3 class="panel-title pull-left">Daily Production Data for <span style="font-weight: bold;">@ViewBag.SiteName</span>&nbsp;&nbsp;</h3>
        <span style="font-weight: normal; background-color: #000080;" class="badge pull-left">(Autoupdate every 30 min.)</span>
        <div class="pull-right" id="loading-production-parameters">
            <span>Refreshing</span>
            <img src="~/Content/ajax-loader-bar1.gif" />
        </div>
    </div>
    <div class="panel-body">
        <table id="partial-rows-parameters" class="table table-striped table-hover">
        </table>
    </div>
    <div class="panel-footer">
            <span>Last Refresh: </span>
            <span id="last_refresh_parameters"></span>
    </div>
</div>

附加信息#1:

即使我将选择器替换为更通用的选择器,它也不起作用。$('body), $('img')……

附加信息 #2:

doRefresh 从事件调用时不运行但在启动时运行的方法:

function doRefresh(what, dataContainer, action) {
                $(what).show();
                $.ajax({
                    url: action,
                    dataType: 'html',
                    success: function (data) {
                        $(dataContainer).html(data);
                        $(what).hide();
                    }
                });
4

1 回答 1

0

只是我的愚蠢...

这解决了我的问题:

$.ajaxSetup({                
               cache: false 
            });

IE 做很多不同的事情,缓存 AJAX 请求也是如此。

于 2013-10-04T14:08:10.603 回答