5

我有一个将一些数据发布到控制器的链接。它工作正常并更新数据。但我想更改父 div 的 css 但它没有发生。我已经尝试了很多变化,但我一定是在做一些愚蠢的事情。

代码如下

看法:

@foreach (var item in Model)
{
    <div class="added-property-excerpt">
        ...
        <div class="added-property-links">
        ...
        @if (!item.IsPropertyDisabled) { 
                @Html.ActionLink("Take off the Market" , "Disable", "Property", new { id = item.PropertyId }, new { id ="disable-link" })
            }
            else {
                @Html.ActionLink("Bring on the Market" , "Enable", "Property", new { id = item.PropertyId }, new { id ="enable-link" })
            }
        </div>
    </div>
}

jQuery

 <script>
     $(function () {
         $('a#disable-link').click(function (e) {
             $('.added-property-links').text('loading...');
             $.ajax({
                 url: this.href,
                 dataType: "text json",
                 type: "POST",
                 data: {},
                 success: function (data, textStatus) { }
             });
             $(this).closest('.added-property-excerpt').css("background", "red");
          // $(this).parent('.added-property-excerpt').css("background", "red");
             e.preventDefault();
         });
     });
 </script>
4

2 回答 2

5

你试过了吗:

$(this).parents('.added-property-excerpt').css("background", "red");

parents带有s

它的作用是从父母到父母,直到找到你想要的课程。

于 2012-10-14T00:19:46.763 回答
4

尝试这个

$(function () {
    $('a#disable-link').click(function (e){
        var parentDiv=$(this).closest('.added-property-excerpt');
        $('.added-property-links').text('loading...');
        parentDiv.css("background", "red");
        $.ajax({...});
        e.preventDefault();
    });
});

查看工作示例非工作示例的区别。

于 2012-10-14T00:49:40.523 回答