我有一个按钮监听器,如下所示:
$('body').on('click', '.showrecent', function() {
$('#display').toggle();
});
我有一个 json 搜索(我在其中附加一个按钮):
var search = 0;
$.getJSON('data.json', function(data) {
if ((this.Name.toLowerCase()).indexOf(sr) > -1) {
id++;
//blah blah blah
var recent = "<button class = 'showrecent' onclick = 'showrecent(id)'>Recent Transaction</button>";
$('#founded').append(recent);
});
});
基本上,我想用 showrecent 函数传递 id !非常感谢任何帮助!