0

我在 JavaScript 函数中检索 html 标记的值,但现在如果我想检索 html 的数据属性值并将其传递给 JavaScript 变量。

我该怎么做?

// create a UL element
var ul = $('<ul></ul>');

// add some LI elements
ul.append(
    $('<li class="bear" data-type="panda">panda bear</li>'),
    $('<li class="bear" data-type="koala">koala bear</li>'),
    $('<li class="wallaby" data-type="kangaroo">kangaroo</li>')
);

// this won't work because our UL is not in the dom yet
console.log($('.bear').length); //=> 0

// let's just pick the bears in our UL using our UL as the context
var bears = $('.bear', ul);
console.log(bears); //=> [li.bear, li.bear]

// lets loop through and see data attributes
bears.each(function() {
    console.log($(this).attr('data-type'));
});
//=> "panda"
//=> "koala"
4

3 回答 3

0

为了检索元素的属性,使用 jQuery 很容易。

$('#selectorId').attr('attribute name')

或者

$('.className').attr('attribute name')
于 2013-06-26T03:42:09.750 回答
0

我认为问题是你没有在这里使用字符串连接

statusHtmlArr.push('<li class="loc-li" data-test="' + rowData.APPT_LOC_QUAL[k].LOCATION_CD + '"  value="' + rowData.APPT_LOC_QUAL[k].LOCATION_CD + '"><a class="sub-detail" href="Javascript:void(0);">' + rowData.APPT_LOC_QUAL[k].LOCATION + '</a></li>');
于 2013-06-26T03:32:06.203 回答
0

你可以做:

var locID = $("li.loc-li")[0].data("test");
于 2013-06-26T03:45:03.033 回答