JavaScript
$("#btn").on('click', function(){
$("#result").append("<button type='button' id='btnid'
data-id='show' //this is what I want to get
class='close pull-right' aria-hidden='true'>some text here</button>");
});
HTML
<button id="btn">CLICK HERE</button>
<div id='result'></div>
<button id="submit">SUBMIT HERE</button>
我想data-id='show'
在单击带有id="submit"
. 如您所见, divid="result"
就像一个包含所有附加文本的容器。
到目前为止,这就是我所拥有的,
JavaScript
$('#submit').click(function(){
$( "#result" ).each(function( index ) {
console.log( index + ": " +$(this).text());
});
});
但是使用此代码,我只能检索文本“这里有一些文本”。但我需要的是附加按钮的数据 ID。
我也尝试了下面的代码,但它不起作用。
JavaScript
$('#submit').click(function(){
$( "#result" ).each(function( index ) {
console.log( index + ": " + $( this ).html($(this).html($(this).attr("data-id"))));
});
});