<span class="input-group-btn">
<button class="btn btn-sm btn-info no-radius" type="submit" onClick="saveMessage('new')" id="query_btn_margin">
<i class="ace-icon fa fa-share"></i>
Add Comment
</button>
</span>
在会话字段中,在添加注释后,页面会重定向到下一页..它将固定在同一页面上。??
答案 0 :(得分:2)
You can write this code after completing your task,write this line.
window.location.href = "newjsp.jsp"
答案 1 :(得分:0)
您已在函数末尾调用此 onclick="saveMessage('new')"
函数添加,
window.location = '/'
或者你可以使用它,
window.location = window.location.host;
window.location = window.location.href;
您在页面使用中使用jquery,
$(window).attr("location","http://google.com");
答案 2 :(得分:0)
您想在添加评论后转到下一页(下一页内容与display:none在同一页面上)...
<input type='button' name='add_comment' id='add_comment' value='ADD COMMENT'/>
当用户点击以上按钮时,请拨打以下js代码
$('#add_comment').click(function(){
$('.currentpage_div_id_to_hide').hide();
$('.nextpage_div_id_to_show').show();
});
答案 3 :(得分:0)
尝试此操作并确保您可以使用.js文件:
<script src="../js/jquery.min.js" ></script>
<script>
$(document).ready(function(){
$("#submitbutton").click(function(){
window.location.href = "newjsp.jsp";
});
});
</script>