Perdoe-me por não ser mais específico sobre isso. Eu tenho um bug tão estranho. Depois que o documento é carregado, faço um loop em alguns elementos que originalmente o continham data-itemname=""
e defino esses valores usando .attr("data-itemname", "someValue")
.
Problema: Quando mais tarde faço um loop através desses elementos, se eu faço elem.data().itemname
, eu entendo ""
, mas se eu faço elem.attr("data-itemname")
, eu entendo "someValue"
. É como se o .data()
getter do jQuery apenas obtivesse os elementos que são configurados inicialmente para conter algum valor, mas se eles estiverem originalmente vazios e posteriormente configurados, .data()
não obterá o valor posteriormente.
Tenho tentado recriar esse bug, mas não consegui.
Editar
Eu recriei o bug! http://jsbin.com/ihuhep/edit#javascript,html,live
Além disso, trechos do link acima ...
JS:
var theaters = [
{ name: "theater A", theaterId: 5 },
{ name: "theater B", theaterId: 17 }
];
$("#theaters").html(
$("#theaterTmpl").render(theaters)
);
// DOES NOT WORK - .data("name", "val") does NOT set the val
var theaterA = $("[data-theaterid='5']");
theaterA.find(".someLink").data("tofilllater", "theater5link"); // this does NOT set data-tofilllater
$(".someLink[data-tofilllater='theater5link']").html("changed link text"); // never gets changed
// WORKS - .attr("data-name", "val") DOES set val
var theaterB = $("[data-theaterid='17']");
theaterB.find(".someLink").attr("data-tofilllater", "theater17link"); // this does set data-tofilllater
$(".someLink[data-tofilllater='theater17link']").html("changed link text");
HTML:
<body>
<div id="theaters"></div>
</body>
<script id="theaterTmpl" type="text/x-jquery-tmpl">
<div class="theater" data-theaterid="{{=theaterId}}">
<h2>{{=name}}</h2>
<a href="#" class="someLink" data-tofilllater="">need to change this text</a>
</div>
</script>
elem.data("itemname")
não elem.data().itemname
?
elem.data().itemname = somevalue;
, não altera os dados subjacentes.)