问题是我需要对<a>
从 Ajax 获取的标签执行点击功能的 JQuery。我似乎找不到适合我的答案。
$("#get_button").click(function (e) {
$.ajax({
type: 'GET',
url: 'http://someurl.com/apikey=1234124124',
dataType: 'jsonp',
success: function (data) {
newRow = "<a id='some_id'>test</a>";
$("#table_id").append(newRow);
}
});
});
$('#some_id').click(function (event) {
event.preventDefault();
alert('this will pop up if it worked');
});
为澄清而编辑:在我的代码中,添加了多行带有 some_id 的 id,我忘记显示了。