javascript - 使用 javascript 打开 CSS 模态对话框

标签 javascript asp.net html css modal-dialog

我在我的 asp 页面中仅使用 CSS3 进行以下模态对话框(弹出)以进行用户注册:

HTML:

<%-- Modal PopUp starts here--%>
<div id="openModal" class="modalDialog">
  <div> 
    <a href="#close" title="Close" class="close" onclick="DisableAllPopUpTxt()">X</a>
    <table style="width:100%;">
      <tr>
        <td style="text-align: center; width: 100%;"></td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <asp:Label ID="lblErrorMSG2" runat="server" Font-Bold="True" ForeColor="#FF3300" Text="Email ID Already Taken " Visible="False"></asp:Label>
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <input id="txtCustFName" name="txtCustFName" type="text" required placeholder="Enter Your First Name" style="width: 80%" />
        </td>
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <input id="txtCustLName" name="txtCustLName" type="text" required placeholder="Enter Your Last Name" style="width: 80%" />
        </td>
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <input id="txtCustREmail" name="txtCustREmail" type="email" required placeholder="Enter Valid Email ID" style="width: 80%" />
        </td>
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <input id="txtCustRPwd" name="txtCustRPwd" type="password" required placeholder="Enter Password" style="width: 80%" />
        </td>
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <input id="txtCustRePwd" name="txtCustRePwd" type="password" required placeholder="ReType Password" style="width: 80%" />
        </td>
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">
          <input id="txtCustPh" name="txtCustPh" type="number" size="10" min="10" max="10" required placeholder="Enter Valid Mobile No" style="width: 80%" />
        </td>
        </td>
      </tr>
      <tr>
        <td class="style1" style="text-align: center; width: 100%;" onclick="btnSignUp()">
          <asp:Button ID="btnSingUp" runat="server" onclick="signUp" Text="Login" />
        </td>
      </tr>
      <tr>
        <td style="text-align: center; width: 100%;">&nbsp;</td>
      </tr>
    </table>
  </div>
</div>
<%--Modal PopUp Ends Here--%>

CSS:

.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}
.modalDialog > div {
  width: 400px;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
  background: -moz-linear-gradient(#fff, #999);
  background: -webkit-linear-gradient(#fff, #999);
  background: -o-linear-gradient(#fff, #999);
}
.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}
.close:hover {
  background: #00d9ff;
}

在我的 asp 页面中,我有以下用于显示弹出窗口的 anchor 标记:

<a href="#openModal" id="DialogLink" style="color: #FFFFFF; font-weight: bold">Register</a>

现在的问题是:

由于这是注册表单,我希望对现有电子邮件 ID 进行服务器端验证。 如果用户输入的电子邮件 ID 已存在于数据库中,我想重新打开上面的模式对话框,并显示错误消息电子邮件 ID 已存在。

我无法重新打开该对话框。 有什么办法可以使用 js 来实现吗?

最佳答案

我的建议是,使用 css 类来打开和关闭。 添加一个 CSS 类,

.opend
{
 opacity :1;
}

给链接添加onclick事件,

<a onclick='document.getElementById("openModal").class="modalDialog opend"; return false;'>>Register</a> 

从服务器呈现控件时,根据打开模式,使用或不使用 css 类来呈现它。

希望这对您有所帮助。

关于javascript - 使用 javascript 打开 CSS 模态对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16373342/

相关文章:

html - 如何将 div 放在悬停上方而不被删除

c# - 如何使用 HTMLElement 以编程方式单击链接元素?

HTML 第一个表格列如何反转 "td + td"?

javascript - jquery悬停效果

javascript - 能否确定 window.resizeTo 是否有效?

javascript - React Router - 如何索引重定向到动态路由

c# - 使用 XDocument 和 Linq 读取 XML - 检查元素是否为 NULL?

javascript - Android 网络浏览器重新加载 HTML5 音频元素中的源文件 - 如何防止?

c# - 在服务器端调用 javascript 函数

c# - Composite C1 - 访问 Razor 函数中的全局数据类型