如何在JS

时间:2017-11-04 21:23:11

标签: javascript java jquery spring-mvc

我尝试使用windows.location,但它在新标签中打开。但我想打开它弹出。我尝试过:

function update(expenseId){
    alert("test" + expenseId);
    window.location.href("/jsp/user.jsp","height=400,width=400");
}

但是这也抛出window.location.href而不是函数错误。请帮忙。

2 个答案:

答案 0 :(得分:0)

试试这个

function update(expenseId){
   alert("test"+expenseId);
   popup_window = window.open("/jsp/user.jsp","height=400,width=400");
   popup_window.focus();
}

答案 1 :(得分:0)

您可以更改或将其用于您的功能

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
    var myWindow = window.open("/jsp/user.jsp", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
}
</script>