iframe是怎么跳转的

在main.jsp中

    <iframe frameborder="0" marginheight="0" marginwidth="0" width="100%"
        height="74px" scrolling="no" src="${pageContext.request.contextPath}/jsp/admin/goods/top.jsp"></iframe>

    <iframe frameborder="0" marginheight="0" marginwidth="0" width="160px"
        height="550px;" scrolling="no" src="${pageContext.request.contextPath}/jsp/admin/goods/left.jsp"
        style="float: left;"></iframe>
    <iframe name="Right" frameborder="0" marginheight="0" marginwidth="0" width="1050px"
        height="540px;" scrolling="no" src="${pageContext.request.contextPath}/jsp/admin/goods/welcome.jsp"
        style="float: left;padding-top: 10px; padding-left: 5px;"></iframe>

在left.jsp中

<a href="${pageContext.request.contextPath }/Users/getAllUsers?page=1&status=0" target="Right">${a.fun_name}</a>

跳往name="Right"的iframe中

原文地址:https://www.cnblogs.com/bluedeblog/p/7407167.html