您的位置:首页 > Web前端 > HTML

HTML标签使用特写

2015-07-23 08:50 585 查看
页面定时刷新标签

//页面定时刷新
<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;"   />
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: