loyung

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

页面定时刷新标签

//页面定时刷新
<meta http-equiv="Refresh" content="12">

 Input标记各种特殊用法

             <%--禁止鼠标选择内容--%>
                   <input id="Text1" name="" type="text" onselectstart="return false;"  />
                   <%--禁止浏览器记录文本框缓存--%>
                   <input id="Text2" name="" type="text" autocomplete="off"  />
                   <%--禁止文本框邮件--%>
                   <input id="Text3" name="" type="text" oncontextmenu='return false;'   />
                   <%--禁止粘贴--%>
                   <input id="Text4" name="" type="text"   onpaste="return false;"   />
                   <%--禁止复制--%>
                   <input id="Text5" name="" type="text"   oncopy="return false;"   />
                   <%--禁止剪切--%>
                   <input id="Text6" name="" type="text"   oncut="return false;"   />

 

posted on 2015-07-23 08:50  loyung  阅读(173)  评论(0编辑  收藏  举报