博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
留言板
阅读量:6164 次
发布时间:2019-06-21

本文共 789 字,大约阅读时间需要 2 分钟。

<!DOCTYPE html>

<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
    //页面打开之后
    $(function(){
        if(localStorage.getItem("k_con")!=null){
            "k_con",$("#dCon").html(localStorage.getItem("k_con"));
        }
    });
    function PostCon(){
        var sCon=$("#trCon").val();
        $("#dCon").append("<div>"+sCon+"</div>");
        localStorage.setItem("k_con",$("#dCon").html());
    }
    
    function Clear(){
        $("dCon").html("");
        localStorage.clear();
    }
    
</script>
</head>
<body>
    <div><textarea id="trCon" rows="10" cols="30"></textarea></div>
    <div><input type="button" value="发表" οnclick="PostCon();">
    <input type="button" value="清除" οnclick="Clear();"/></div>
    <div id="dCon"></div>
</body>
</html>

转载于:https://www.cnblogs.com/gf36500/p/6868522.html

你可能感兴趣的文章
前端js之JavaScript
查看>>
Log4J日志配置详解
查看>>
实验7 BindService模拟通信
查看>>
scanf
查看>>
Socket编程注意接收缓冲区大小
查看>>
SpringMVC初写(五)拦截器
查看>>
检测oracle数据库坏块的方法
查看>>
SQL server 安装教程
查看>>
Linux下ftp和ssh详解
查看>>
跨站脚本功攻击,xss,一个简单的例子让你知道什么是xss攻击
查看>>
js时间和时间戳之间如何转换(汇总)
查看>>
js插件---图片懒加载echo.js结合 Amaze UI ScrollSpy 使用
查看>>
java中string和int的相互转换
查看>>
P1666 前缀单词
查看>>
HTML.2文本
查看>>
Ubuntu unity安装Indicator-Multiload
查看>>
解决Eclipse中新建jsp文件ISO8859-1 编码问题
查看>>
7.对象创建型模式-总结
查看>>
【论文阅读】Classification of breast cancer histology images using transfer learning
查看>>
移动端处理图片懒加载
查看>>