【十五分钟Talkshow】为什么新浪微博的输入文本框具有记忆功能

摘要提示

“十万个为什么” 之
    为什么在新浪微博上面的输入文本框有记忆功能?

    1.在网页关闭之前,如果文本框不为空,则将内容保存起来(保存到哪里去==>cookie)

    2.在网页加载的时候,想办法还原

 

视频地址

http://www.tudou.com/programs/view/DOkXpZQnnFw/

 

示例代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplicationSample.Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <style type="text/css">
        #txtInput {
            height: 113px;
            width: 694px;
        }
    </style>
    <script src="Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>
    <script src="Scripts/jquery.cookie.js" type="text/javascript"></script>

    <script type="text/javascript">

        function SaveText() {
            var date = new Date();
            date.setTime(date.getTime() + (30 * 60 * 1000));
            $.cookie("input", $("#txtInput").text(), { expires: date });
        }


        $(function () {
            $("#txtInput").text($.cookie("input"));
        });
    
    </script>
</head>
<body onbeforeunload="SaveText()">
    <form id="form1" runat="server">
    <div>
        <textarea id="txtInput" rows="5"></textarea>
    </div>
    </form>
</body>
</html>
posted @   陈希章  阅读(4817)  评论(14编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示