的onclick動態生成html元件I具有的servlet創建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;
});