<script>
$(document).ready(function(){
$(function() {
$( "#datepicker" ).datepicker({ minDate:1,dateFormat: 'yy/mm/dd' });
});
// on changing date initilize the countdown again
$("#datepicker").change(function(){
init($(this).val());
})
function init(dt){
$('#clock').countdown(dt).on('update.countdown', function(event) {
var $this = $(this).html(event.strftime(''
+'<span>%-d</span> day%!d '
));
});
}
//initilize counter on load with some default date
init("2016/11/25");
});</script>
<td><strong>
<%out.print("<div id=\"clock\">"+rs.getString(8)+"</div>"); %>
</strong></td>
我想在jsp标签中打印div内容。我应该怎么做才能在jsp的输出中显示div。请帮帮我。我很感激你的好解决方案。
答案 0 :(得分:0)
您不必使用:
<%out.print("<div id=\"clock\">"+rs.getString(8)+"</div>"); %>
您可以简单地使用:
<div id="clock"><%=rs.getString(8)%></div>
在JSP文件中,您可以直接使用任何html标记。