Home > Web Front-end > JS Tutorial > body text

Write a simple memo using jquery and bootstrap

一个新手
Release: 2017-09-11 10:14:46
Original
1435 people have browsed it


Words written in front

    经过这一个星期的努力,我终于把这个简陋的tudolist做出来了。(好吧,我承认是自己比较菜。)
    通过写博客的方式,我想把这一个星期里来调试的收获和对编程的感悟记录下来,回顾自己走过的路会对以后要走的路有所启示的。
    如果你和我一样是初窥前端的一个怀抱梦想的初学者,我希望我走过的这段路能对你有些许的启示,让你对前端收获一点感悟。如果你是一个前端的大牛,也由衷的希望你能留下些许的指教。
Copy after login

Thank you very much for reading this article, and I hope you can continue reading...

Project name

帕尼尼的备忘录
Copy after login

HTML structure

<p class="tudo">
        <!-- 标题部分开始 -->
        <header>
            <h1 class="tudo-title">帕尼尼的Tudo</h1>
        </header>
        <!-- 标题部分结束 -->
        <!-- 提交部分开始 -->
        <section>
        </section>
        <!-- 提交部分结束 -->
        <!-- 列表部分开始 -->
        <section>
            <!-- 列表条目 -->
            <p class="tudo-list">
                <p>未完成事项</p>
            </p>
            <ul class="list-group" id="tList"></ul>
            <!-- 已完成列表条目 -->
            <p class="tudo-list">
                <p>已完成事项</p>
            </p>
            <ul class="list-group" id="fList"></ul>
            <!-- 事件提醒条目 -->
            <ul class="list-group" id="rList"></ul>
            <!-- 模态框 事项信息框-->
            <p class="modal fade" id="modal_list" tabindex="-1" role="dialog">
            </p>
            <!-- 模态框 提示框-->
            <p class="modal fade" id="modal_sure" tabindex="-1" role="dialog">
            </p>
        </section>
        <!-- 列表部分结束 -->
        <!-- 脚注部分开始 -->
        <footer>
        </footer>
        <!-- 脚注部分结束 -->
        <video src="alert.mp3" class="alert"></video>
    </p>
Copy after login

js function

//初始化function init(){}
//事件列表拼接function ping(){}
//未完成事件拼接function ping_unfinish(object,i){}
//已完成事件拼接function ping_finish(object,i){}
//删除事件监听function listion_del(){}
//列出事件监听function listion_all(){}
//勾选事件监听function listion_che(){}
//事件删除操作function thing_del(id){}
//事件列出操作function thing_all(id){}
//事件提交操作function thing_sub(){}
//事件修改操作function thing_upd(){}
//事件状态改变操作function thing_change(){}
//时间监视function time_watch(){}
//时间检查(获取离现在最近的一个任务)function time_check(){}
//时间达到预定后处理function time_get(){}
//重新监听时间function time_reset(){}
//显示提醒面板function time_remain(){}
Copy after login

Mind map

Write a simple memo using jquery and bootstrap

Run Rendering

Write a simple memo using jquery and bootstrap

The above is the detailed content of Write a simple memo using jquery and bootstrap. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!