随笔分类 -  html

摘要:GitHub https://github.com/MasterN05/wangEditor 阅读全文
posted @ 2021-01-07 23:54 anobscureretreat 阅读(444) 评论(0) 推荐(0) 编辑
摘要:Code1 <form class="bs-example bs-example-form" role="form"> <!-- <div class="input-group"> <div class="input-group-btn"> <button id="dLabel" type="but 阅读全文
posted @ 2020-12-26 19:51 anobscureretreat 阅读(487) 评论(0) 推荐(0) 编辑
摘要:图片 code <!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>使用jQuery UI修饰title属性的气泡悬浮框(Tooltip) 阅读全文
posted @ 2020-12-24 00:01 anobscureretreat 阅读(2377) 评论(0) 推荐(0) 编辑
摘要:code <!DOCTYPE HTML> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>Bootstrap 3 的多级下拉菜单示例</title> <script type="text/javascript" src="http:/ 阅读全文
posted @ 2020-12-23 23:51 anobscureretreat 阅读(1486) 评论(0) 推荐(0) 编辑
摘要:code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <iframe id="iframe" src="{{ book_url }}" frame 阅读全文
posted @ 2020-12-23 23:49 anobscureretreat 阅读(105) 评论(0) 推荐(0) 编辑
摘要:code <!DOCTYPE html> <head> <meta charset="UTF-8"> <title>clipboard示例</title> <script src="clipboard.min.js"></script> </head> <body> <hr> <h2>从另外一个元素 阅读全文
posted @ 2020-12-23 23:47 anobscureretreat 阅读(356) 评论(0) 推荐(0) 编辑
摘要:首页 # github地址: https://github.com/fusu192/musichtml 阅读全文
posted @ 2020-10-21 13:46 anobscureretreat 阅读(1278) 评论(0) 推荐(0) 编辑
摘要:图片 code <html> <head> <script src="http://code.jquery.com/jquery-1.10.2.js"></script> <style> /*修改提示框*/ #mytitle { position: absolute; color: #ffffff; 阅读全文
posted @ 2020-08-19 17:46 anobscureretreat 阅读(354) 评论(0) 推荐(0) 编辑
摘要:code <a id="baidu_link" href ="www.baidu.com" title="百度"/> <script type="text/javascript"> function setTitle() { document.getElementById( "baidu_link" 阅读全文
posted @ 2020-08-19 17:36 anobscureretreat 阅读(265) 评论(0) 推荐(0) 编辑
摘要:code <html> <body> <input onkeydown="if(event.keyCode==13) {test()}"/> <script> function test() { alert(123); } </script> </body> </html> 阅读全文
posted @ 2020-08-19 17:30 anobscureretreat 阅读(1243) 评论(0) 推荐(0) 编辑
摘要:code 对于Internet Explorer、Chrome、Firefox、Opera 以及 Safari: * window.innerHeight 高度 * window.innerWidth 宽度 对于 Internet Explorer 8、7、6、5: * document.docum 阅读全文
posted @ 2020-08-19 17:28 anobscureretreat 阅读(457) 评论(0) 推荐(0) 编辑
摘要:code HTML常用特殊字符:只要你认识了 HTML 标记,你便会知道特殊字符的用处。 HTML 原代码 显示结果 描述 &lt; < 小于号或显示标记 &gt; > 大于号或显示标记 &amp; & 可用于显示其它特殊字符 &quot; “ 引号 &reg; ® 已注册 &copy; © 版权 阅读全文
posted @ 2020-08-19 17:25 anobscureretreat 阅读(673) 评论(0) 推荐(0) 编辑
摘要:在img标签里面只设置宽,不设置高,图片就会等比例缩放。 阅读全文
posted @ 2020-05-07 16:52 anobscureretreat 阅读(7837) 评论(0) 推荐(1) 编辑
摘要:图片 链接:https://pan.baidu.com/s/1jeFYO4e4_IYksQEXPD65pw 密码:mibt https://www.jb51.net/article/167577.htm 阅读全文
posted @ 2019-09-09 10:29 anobscureretreat 阅读(399) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head> <script src="crypto-js.min.js"></script> </head> <body> <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script> <script src="http://passport.cnblogs.com/script 阅读全文
posted @ 2019-09-09 10:17 anobscureretreat 阅读(261) 评论(0) 推荐(0) 编辑
摘要:解决办法就是:https://github.com/bestjhh/Plugin 下载替换。 参考: https://github.com/bestjhh/Plugin https://blog.csdn.net/qq_40776187/article/details/90170419 https: 阅读全文
posted @ 2019-07-28 23:12 anobscureretreat 阅读(1252) 评论(0) 推荐(0) 编辑
摘要:https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md 阅读全文
posted @ 2019-07-28 21:16 anobscureretreat 阅读(230) 评论(0) 推荐(0) 编辑
摘要:译文概要:输入元素应该有自动完成的属性,比如: autocomplete=’tel’. autocomplete 用途: 此功能主要是记住输入内容,下次提交表单或者浏览器回退后,还能保持表单内容不变。 解决方法:添加属性autocomplete=’tel’ 参考: https://blog.csdn 阅读全文
posted @ 2019-07-28 20:56 anobscureretreat 阅读(822) 评论(0) 推荐(0) 编辑
摘要:[DOM] Password field is not contained in a form: ( [DOM]密码字段不包含在form表单中) 解决方案:添加一层form标签 参考: https://www.xinran001.com/frontend/116.html 阅读全文
posted @ 2019-07-28 20:54 anobscureretreat 阅读(5761) 评论(0) 推荐(0) 编辑