1

我有“创建用户”表单,需要一点帮助。在我希望用户单击按钮的链接之一,然后会弹出带有信息的小弹出窗口,然后他们关闭弹出窗口并继续填写表格。以下是代码:

<div class="users form">
<?php
    echo $this->Form->create('User', array (
            'type' => 'post',
            'inputDefaults' => array (
                'div' => false
            )
        )       
    );
?>
<script>
    $(document).ready(function() {
        $('#UserFirstName').focus();
    });
</script>
<fieldset>
    <legend></legend>
    <h2>Registration</h2>
    <?php
        echo $this->Form->input('firstName');
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('lastName');
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('username');
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('password', array ('class' => 'short'));
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('password_confirm', array('type' => 'password', 'label' => 'Confirm Password:   ', 'class' => 'short'));
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('email', array('label' => 'Email:   ', 'default' => $email));
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('id', array('label' => 'id: ', 'type' => 'hidden', 'default' => 37));
        $qmark = $this->Html->image('qmark.png', array('height' => 15));
        echo '<div class=\'clear\'></div>';
        echo $this->Form->input('number', array('label' => 'Number:', 'class' => 'short', 'after' => $qmark));
        echo '<div class=\'clear\'></div>';
    ?>

我希望用户单击 qmark 按钮,然后会弹出带有该字段定义的小窗口。

echo $this->Form->input('number', array('label' => 'Number:', 'class' => 'short', 'after' => $qmark));

在此先感谢您的帮助。

4

4 回答 4

0

这个给你!

    $(document).ready(function() {

       $('input[name="number"]').click(function() {

          alert('Display your popup here...'); // maybe you should use another js library for popup
      });
    });

再见!

于 2012-09-28T04:45:47.173 回答
0

实际上,您必须使用以下方法在按钮上添加单击事件的侦听器:

$('input[name="number"]').click(function() {
    // Your code here

}

您可以使用著名的 JQuery-UI 对话框:http: //jqueryui.com/demos/dialog/ 它非常易于使用。

您可以在主页中创建框的内容(在具有 display:none 样式的 div 中),或者以前使用 ajax 调用检索内容,然后打开包含内容的对话框。

于 2012-09-28T04:52:56.320 回答
0

当用户单击它时,您必须绑定(添加侦听器)到按钮,以便它可以显示您的弹出窗口,不要忘记将 ID 添加到要使其可点击的按钮或元素,我建议使用此标记:

<a href="#"></a>

$("#button").click(function(e){
    e.preventDefault();
    $("#popup").show();
});

如果使用标签,则必须添加 preventDefault(),以防止浏览器更改光标的焦点。

此外,您必须使用 CSS 创建“弹出窗口”以浮动在网站的其他元素上,因为默认情况下可能会阻止另一个浏览器窗口,我认为这是一种不好的可用性做法。

不要忘记隐藏弹出框,您可以使用具有以下属性的 CSS 来做到这一点:

visible:none;
于 2012-09-28T05:07:47.977 回答
0

在这里,我已经完成了上述问题的完整解决方案。

演示 http://codebins.com/bin/4ldqp6y

HTML

<input type="button" id="btnSignUp" value="SignUp" />
<div id="popup">
  <div id="popupinfo">
    <p> Now, your registration form has been loaded...! </p>
    <p> You have field your required fields and submit form.</p>
    <p class="button"><a href="javascript:void(0);">OK</a></p>
  </div>
</div>
<div id="registerDiv">
  <p class="required">Fields with Mark (*) are required fields </p>
  <form name="frmregister" id="frmregister" method="post" action="#registerDiv">
    <table cellpadding="0" cellspacing="0" class="table" border="0">
      <tr>
        <td>*Name:</td>
        <td><input type="text" class="input" size="17" /></td>
      </tr>
      <tr>
        <td>*Username:</td>
        <td><input type="text" class="input" size="17" /></td>
      </tr>
      <tr>
        <td>*Password:</td>
        <td><input type="password" class="input" size="17" /></td>
      </tr>
      <tr>
        <td>*Confirm Password:</td>
        <td><input type="password" class="input" size="17" /></td>
      </tr>
      <tr>
        <td>Email:</td>
        <td><input type="text" class="input" size="17" /></td>
      </tr>
      <tr>
        <td colspan="2">&nbsp;</td>
      </tr> 
       <tr>
         <td colspan="2" align="center"><input type="submit" value="Register" id="btnsubmit" /></td>
       </tr>
    </table>
  </form>
</div>

CSS

.input{
  border:1px solid #333;
}
.required{
  color:red;
  font-size:12px;
}

#registerDiv{
  display:none;
  margin-top:10px;
  margin-left:20px;
  border:2px solid #333;
  padding:3px;
  background:#cdcdcd;
  width:280px;
  text-align:center;
}
#popup{
  display:none;
  padding:10px;
  background:#969696;
  position:absolute;
  top:25%;
  left:25%;
  z-index: 99999;
  opacity:100%;

}
#popupinfo{
  padding:2px;
  text-align:center;
  background:#cfcfcf;
}
#popupinfo p{
  font-size:14px;
}

#popupinfo .button {
  text-align:center;
}
#popupinfo .button a{
  text-decoration:none;
  border:1px solid #333;
  width:20px;
  padding:5px;
  background:#1A1A1A;
  color:#eee;
}

#popupinfo .button a:hover{
  background:#eee;
  color:#1a1a1a;
}

#mask{

  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 999;

}

jQuery

$(function() {
    $("#btnSignUp").click(function() {
        $("#registerDiv").fadeIn(300);
        $("body").append("<div id='mask'></div>");
        $("#mask").fadeIn(300);
        $("#popup").fadeIn(300);
    });
    $("#popup .button a").click(function() {
        $("#popup").fadeOut(300, function() {
            $("#mask").remove();
        });
        $("#frmregister").find("input:first").focus();
    });
});

演示 http://codebins.com/bin/4ldqp6y

于 2012-09-28T11:16:53.843 回答