0

我想要一个包含用户名、电子邮件 ID 等信息的弹出框,单击提交按钮和确定和取消按钮以使用 JAVA SCRIPT 进行确认。.如何在单击提交按钮时为新窗口编写 JavaScript 代码,显示注册信息,并带有确定和取消。

<script type="text/javascript">
    if (confirm("Press 'OK' to leave, or 'Cancel' if you want to stay: "))
    {         
       window.location="http://google.com";
    }
    else
    {         
      <a href="javascript:history.go(-1)">Go back</a> 
    }
  </script>
4

1 回答 1

0

可以使用JQUERY UI

你可能想在那个检查 ModalForm

$( "#dialog-form" ).dialog({
            autoOpen: false,
            height: 300,
            width: 350,
            modal: true,
            buttons: {
                "Create an account": function() {
                    var bValid = true;
                    allFields.removeClass( "ui-state-error" );


                    if ( bValid ) {
                        $( "#users tbody" ).append( "<tr>" +
                            "<td>" + name.val() + "</td>" + 
                            "<td>" + email.val() + "</td>" + 
                            "<td>" + password.val() + "</td>" +
                        "</tr>" ); 
                        $( this ).dialog( "close" );
                    }
                },
                Cancel: function() {
                    $( this ).dialog( "close" );
                }
            },
            close: function() {
                allFields.val( "" ).removeClass( "ui-state-error" );
            }
        });
于 2012-09-07T11:45:51.470 回答