【vue】设计一个表格,增删改查,分页,固定列,特殊字符校验

简介: 【vue】设计一个表格,增删改查,分页,固定列,特殊字符校验


前言

前端二面试题,话不多说看题~

功能

1.表格

2.删除,编辑,新增

代码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        html,
        body {
            height: 100%;
            width: 100%;
        }
        #d1 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .hide {
            display: none;
        }
        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
        #d2 {
            height: 300px;
            width: 600px;
            background-color: white;
            position: fixed;
            top: 50%;
            left: 50%;
            margin-left: -300px;
            margin-top: -120px;
        }
    </style>
</head>
<body>
    <div id="d1" class=" c1 hide"></div>
    <div id="d2" class=" c1 hide"></div>
    <div class="content">
        <input type="button" class="create" value="新增">
        <table border="1px" Cellspacing="0" Cellpadding="10">
            <thead>
                <tr class="title">
                    <th>#</th>
                    <th>姓名</th>
                    <th>爱好</th>
                    <th>操作</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>1</td>
                    <td class="name">EGon</td>
                    <td class='fav'>街舞</td>
                    <td><input type="button" class="add" value="编辑"> <input type="button" class="delete" value="删除">
                    </td>
                </tr>
                <tr>
                    <td>2</td>
                    <td class="name">ALEX</td>
                    <td class='fav'>理发</td>
                    <td><input type="button" class="add" value="编辑"> <input type="button" class="delete" value="删除">
                    </td>
                </tr>
                <tr>
                    <td>3</td>
                    <td class="name">小强</td>
                    <td class='fav'>二人转</td>
                    <td><input type="button" class="add" value="编辑"> <input type="button" class="delete" value="删除">
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
    <script src="http://unpkg.com/jquery"></script>
    <script>
        $(".create").on("click", function () {
            $(".c1").removeClass("hide")
            $("#d2").html("<p>姓名:<input class='named' type='text'></p><p>爱好:<input class='fave' type='text'></p> <p><input class='submit'  type='button' value='提交'><input  class='cancle' type='button' value='取消'></p>");
        })
        $("body").on("click", ".cancle", function () {
            $(".c1").addClass("hide")
        })
        $("body").on("click", ".submit", function () {
            if ($(".named").val() == "") {
                var nameVal = $(".named").val();
                var favVal = $(".fave").val();
                var xuHao = parseInt($("tr:last").children().first().text()) + 1
                console.log(xuHao, nameVal, favVal)
                var trEle = document.createElement("tr");
                $("tbody").append(trEle)
                $(trEle).html("<td class='q1'></td>, <td class='q2' ></td> ,<td class='q3'></td> ,<td><input type='button' value='编辑'><input type='button' class='delete' value='删除'></td>");
                $(".q1").text(xuHao);
                $(".q2").text(nameVal);
                $(".q3").text(favVal);
                $(".c1").addClass("hide");
            }
            else {
                var nameVal = $(".named").val();
                var favVal = $(".fave").val();
            }
        })
        $("body").on("click", ".delete", function () {
            $(this).parent().parent().remove()
        })
        $("body").on("click", ".add", function () {
            $(this).data("name", $(this).parent().siblings(".name").html());
            console.log($(this).data("name"));
            $(this).data("fav", $(this).parent().siblings(".fav").html());
            console.log($(this).data("fav"));
            $(".c1").removeClass("hide");
            $("#d2").html("<p>姓名:<input class='named' type='text'></p><p>爱好:<input class='fave' type='text'></p> <p><input class='submit'  type='button' value='提交'><input  class='cancle' type='button' value='取消'></p>");
            $(".named")[0].value = $(this).data("name");
            $(".fave")[0].value = $(this).data("fav");
            var nameVal = $(".named").val();
            var favVal = $(".fave").val();
            console.log(nameVal, favVal)
            var a1 = $(this).parent().siblings(".name")
            var a2 = $(this).parent().siblings(".fav")
            $("body").on("click", ".submit", function () {
                var nameVal = $(".named").val();
                var favVal = $(".fave").val();
                a1.html(nameVal)
                a2.html(favVal)
                console.log(nameVal, favVal)
                $(".c1").addClass("hide");
            })
        })
    </script>
</body>
</html>

效果图

目录
相关文章
|
5天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
5天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
5天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
5天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
4天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
6天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
4天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
19天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
6天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
11天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发