我有创建 html 元素并以 text/html 形式返回的 servlet
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.write("<span class='tagged-time'> <a href='#' id='" + current.getSecond() + "' class='time'>" + current.getName() +"</a></span>");
在 Jsp 中,我使用 AJAX 调用这个 servlet。它正确返回 html 元素,但是当我单击时,不会调用 onclick 方法。
$('.tagged-time').on('click', 'a', function() {
video.currentTime = this.id;
});