打开弹出窗口onclick并在提交时关闭它并显示相关的html页面

时间:2015-02-17 12:37:52

标签: javascript jquery html onclick popup

我有一个场景,如果我点击html页面上的下一个按钮,它会打开一个弹出窗口。弹出窗口有用户名和密码。如果我点击提交按钮提供用户名和密码后,弹出窗口应关闭并转到下一个html页面。仅使用JavaScript或jQuery。我的代码:HTML:JS: 我的代码:

HTML:
<input class="btnFont floatRight" name="__DONE_BUTTON" type="button" onClick="myFunction();" value="Next">
JS:
<script>

    function myFunction() {

    var myWindow = window.open("", "MsgWindow", "width=279, height=150");
    myWindow.document.write("<p>User ID:</p><input type='text' width='30px'>");

    myWindow.document.write("<p>Password:</p><input type='password' width='30px'>");
    myWindow.document.write("<input type='button' value='OK' width='30px'>");

}

1 个答案:

答案 0 :(得分:0)

为什么不像引导模式那样去,在这里你可以关闭

 window.close(); 

并使用

重定向
$(window).attr("location","/test/tes1");