SoFunction
Updated on 2025-04-03

Solve the problem that vue attr cannot get attribute value

js:

$(document).ready(function() {
  $.get("/account/authGroupInfo",{id:groupId}, function(data) {
    var arr = (",");
    (arr);
    $.get("/account/allRule",{}, function(result) {
       = ;
//The problem lies      ruleList.$nextTick(function () {
        $(".auth_rules").each(function () {
          if($.inArray($(this).attr("id"),arr)>-1) {
            $(this).prop('checked',true);
          }
        })
      })
    });
  });
});

html:

<tr v-for="value in options">
  <td><input type="checkbox"  value="{{}}," class="auth_rules">{{  }}</td>
</tr>

use

ruleList.$nextTick(function () {}) Get the updated dom

The above article solves the problem that vue attr cannot get the attribute value is all the content I share with you. I hope you can give you a reference and I hope you can support me more.