zoukankan      html  css  js  c++  java
  • 下拉框的选择跳转事件(jqure)

    <select id="coupontype">
                            <option value="@CouponType.全部" href="@Url.Action("Index", "SpecialOffers", new { couponType = CouponType.全部 })" @(couponType == CouponType.全部?"checked":"")>全部</option>
                            <option value="@CouponType.平台" href="@Url.Action("Index", "SpecialOffers", new { couponType = CouponType.平台 })" @(couponType == CouponType.平台 ? "checked" : "")>平台</option>
                            <option value="@CouponType.商家" href="@Url.Action("Index", "SpecialOffers", new { couponType = CouponType.商家 })" @(couponType == CouponType.商家 ? "checked" : "")>商家</option>
    </select>
    
    以上为页面样式,增加的href属性为放选择链接的。以下为jqure代码,
    <script>
        $("#coupontype").change(function (event) {
            var invoker = $.event.fix(event).target;
            var targetHref = $(invoker).attr("href");
            location.href = targetHref;
        });
    </script>
  • 相关阅读:
    G
    O
    M
    K-Hero
    J
    G
    F
    Codeforces Round #327 (Div. 2) A Wizards' Duel (水题)
    C++各大有名科学计算库(转)
    矩阵算法 高斯消元 行列式 矩阵的秩
  • 原文地址:https://www.cnblogs.com/WZH75171992/p/4563439.html
Copyright © 2011-2022 走看看