由于自己以前是进行vue前端开发的,最近接到了一个项目需要写jsp并且要用layui。让小白的我真的从头来了一遍啊。

问题如下:

点击button按钮的οnclick="window.location.href = ‘${pageContext.request.contextPath}/auth/patent/getFinishPage’"事件跳转页面无反应。但是使用windows.open()方法就没事。其实很简单只需要加window.event.returnValue=false;

解决方案:

<div class="layui-input-block">
  <button class="layui-btn button"
          οnclick="window.location.href = '${pageContext.request.contextPath}/auth/patent/getFinishPage';window.event.returnValue=false;">
      关闭
  </button>
</div>

以上就是问题的解决方案,我用的这种有效果。

Logo

前往低代码交流专区

更多推荐