iframe 登录弹窗

登录弹窗功能

实现在任何页面都可以弹出登录窗体
在这里插入图片描述
在这里插入图片描述
登录页面代码

    <section class="login-img">
        <span class="X">退出X</span>
        <form action="#" method="post">
            <ul>
                <li class="dlzc">登录</li>
                <li>注册</li>
            </ul>
            <section class="nnf">
                <table cellpadding="0" cellspacing="0">
                    <tr>
                        <td colspan="2">
                            <input type="text" placeholder="请输入手机号或邮箱" class="sm">
                        </td>

                    </tr>
                    <tr>

                        <td colspan="2">
                            <input type="password" placeholder="请输入密码" class="sm">
                        </td>

                    </tr>

                    <tr>
                        <td colspan="2">
                            <input type="submit" value="立即登录" class="anniu">

                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                            <input type="checkbox">我已阅读并同意《音悦Tai服务条款》

                        </td>
                    </tr>
                </table>

                <table cellpadding="0" cellspacing="0" class="hidee">

                    <tr>
                        <td colspan="2">
                            <input type="text" placeholder="请输入手机号或邮箱" class="sm">
                        </td>

                    </tr>
                    <tr>

                        <td colspan="2">
                            <input type="password" placeholder="请输入密码" class="sm">
                        </td>
                    </tr>
                    <tr>

                        <td>
                            <input type="text" placeholder="请输入验证码" class="yanzhen">
                        </td>
                        <td>
                            获取验证码
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                            <input type="submit" value="立即注册" class="anniu">
                        </td>
                    </tr>

                </table>
            </section>
        </form>
        
    </section>
    <section class="login-ping">

    </section>

< iframe > 元素可以用来嵌入一个独立的HTML文档到当前页面中。

    <!-- 头部导航 -->
    <iframe src="/headr.html" id="topif" frameborder="0" scrolling="no" style="width: 100%;height: 162px;"></iframe>
    <iframe src="/login.html" id="loginif" frameborder="0" scrolling="no"style="width: 100%;height: 2500px;display: none; position: absolute;"></iframe>

JQuery代码

$(function () {
    $("#topif").on('load', function () {
        $("#topif").contents().find(".login").click(function () {
            $("#loginif").show();

            $("#loginif").contents().find(".X").click(function () {
                $("#loginif").hide()
                return false;
            })
        })
    })

})

JQuery 代码封装到 js 中并引入使用,就不用每个页面都复制一遍,减少代码量

<script src="js/jquery-3.7.1.js"></script>

在这里插入图片描述

  • 26
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值