简体   繁体   English

Asp.net MVC 在按钮点击时运行 javascript

[英]Asp.net MVC run javascript on button click

I kind of messed up the logic of my code, and I can't figure out how to fix it.我有点搞砸了我的代码逻辑,我不知道如何修复它。 I have a Bootstrap navtab panel that when the tabs are clicked, based on which tab is clicked it runs an MVC C# function in my controller. I actually need this to happen on a button click.我有一个 Bootstrap navtab 面板,当单击选项卡时,基于单击哪个选项卡,它会在我的 controller 中运行 MVC C# function。我实际上需要在单击按钮时发生这种情况。 SO the user enters a date into the datepicker, clicks submit, and then based on which tab is selected, a function will be run.因此,用户在日期选择器中输入一个日期,单击提交,然后根据选择的选项卡,将运行 function。 How can I do this on a button click?单击按钮如何执行此操作?

Here is my datepicker and button:这是我的日期选择器和按钮:

<div class="row spiff-datepicksection">
            <div class="col-lg-6 pull-right">
                <div class="col-sm-5 col-lg-offset-4">
                    <div class="form-group">
                        <div class="input-group date">
                            <input id="startDate" type="text" class="form-control" />
                            <span class="input-group-addon">
                                <span class="glyphicon glyphicon-calendar"></span>
                            </span>
                        </div>
                    </div>
                </div>
                <div class="col-lg-3">
                    <input class="spiffdate-btn" type="submit" value="Submit" />
                </div>
            </div>
        </div>

Here is my javascript:这是我的 javascript:

<script>
    $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
        var wrongid = $('.tab-content .active').attr('id');
        $('a[data-toggle="tab"]').removeClass("active");
        $(this).addClass("active");
        var correctid = $(this).data("id");
        alert($('.tab-content .active')[0].outerHTML);

        var startDate = $('#startDate').val();

        if (correctid == "delayedspiff")
            $.get("@Url.Action("DelayedSpiffDate", "Dashboard")", { startDate: startDate });
        else
            $.get("@Url.Action("InstantSpiffDate", "Dashboard")", { startDate: startDate });

    });
</script>

And here is my controller if it is needed:如果需要,这是我的 controller:

public ActionResult DelayedSpiffDate(DateTime startDate)
    {
        var available = _appService.GetFeatureStatus(1, "spiffDashboard");
        if (!available)
            return RedirectToAction("DatabaseDown", "Error", new { area = "" });

        var acctId = User.AccountID;
        //startDate = DateTime.Today.AddDays(-6);  // -6
        var endDate = DateTime.Today.AddDays(1); // 1

        Dictionary<DateTime, List<SpiffSummaryModel>> dict = new Dictionary<DateTime, List<SpiffSummaryModel>>();

        try
        {
            var properties = new Dictionary<string, string>
            {
                { "Type", "DelayedSpiff" }
            };
            telemetry.TrackEvent("Dashboard", properties);

            dict = _reportingService.GetDailyDelayedSpiffSummaries(acctId, startDate, endDate);

        }
        catch (Exception e)
        {
            if (e.InnerException is SqlException && e.InnerException.Message.StartsWith("Timeout expired"))
            {
                throw new TimeoutException("Database connection timeout");
            }
            var error = _errorCodeMethods.GetErrorModelByTcError(PROJID.ToString("000") + PROCID.ToString("00") + "001", "Exception Getting DelayedSpiff Dashboard View", PROJID, PROCID);
            error.ErrorTrace = e.ToString();
            _errorLogMethods.LogError(error);
            return RedirectToAction("index", "error", new { error = error.MaskMessage });
        }

        var spiffDateModels = new List<DelayedSpiffDateModel>();

        foreach (var entry in dict)
        {
            var spiffDateModel = new DelayedSpiffDateModel();

            spiffDateModel.Date = entry.Key;

            spiffDateModel.Carriers = new List<DelayedSpiffCarrierModel>();

            foreach (var item in entry.Value)
            {
                var spiffCarrierModel = new DelayedSpiffCarrierModel();
                spiffCarrierModel.Carrier = item.CarrierName;
                spiffCarrierModel.CarrierId = item.CarrierId;
                spiffCarrierModel.ApprovedSpiffTotal = item.ApprovedSpiffTotal;
                spiffCarrierModel.EligibleActivationCount = item.EligibleActivationCount;
                spiffCarrierModel.IneligibleActivationCount = item.IneligibleActivationCount;
                spiffCarrierModel.PotentialSpiffTotal = item.PotentialSpiffTotal;
                spiffCarrierModel.SubmittedActivationCount = item.SubmittedActivationCount;
                spiffCarrierModel.UnpaidSpiffTotal = item.UnpaidSpiffTotal;
                spiffDateModel.Carriers.Add(spiffCarrierModel);
            }

            spiffDateModels.Add(spiffDateModel);
        }
        spiffDateModels = spiffDateModels.OrderByDescending(x => x.Date).ToList();

        return PartialView(spiffDateModels);
    }

Any ideas on how to make this happen on a button click?关于如何通过单击按钮实现这一点的任何想法?

You can try to create a handler of the 'click' event, which should retrieve a valid identifier of the selected tab and send a GET request to the server. 您可以尝试创建'click'事件的处理程序,该处理程序应检索所选选项卡的有效标识符并将GET请求发送到服务器。

$(".spiffdate-btn").click(function(){
    var correctid = $(".tab-content .active").attr("id");
    var startDate = $("#startDate").val();
    if (correctid == "delayedspiff")
        $.get("@Url.Action("DelayedSpiffDate", "Dashboard")", { startDate: startDate });
    else
        $.get("@Url.Action("InstantSpiffDate", "Dashboard")", { startDate: startDate });
});

I realize this is an old question, but I am struggling with a similar issue so I am looking at old questions.我意识到这是一个老问题,但我正在为类似的问题而苦苦挣扎,所以我正在研究老问题。

I think I see your problem though:我想我看到了你的问题:

<script>
    $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {

Your script calls "on shown".您的脚本调用“显示”。

If you do not want it running when it is shown, change it to "on click".如果您不希望它在显示时运行,请将其更改为“单击时”。

How?如何? I can't help you with that yet.我现在还帮不了你。 My javascript isn't that good.我的 javascript 不太好。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM