摘要:
2018年11月14日晚上,我在“深入理解javascript”书上第一次知道“严格模式”“非严格模式”这2个名词; “严格模式”使用指令:“use strict”; 这个指令我其实有经常看到,在其他人的js文件里。当然我是不知道含义的,且我也没有想过要去询问,写在那就在那吧,又不影响我。 今天做这 阅读全文
摘要:
contentEditable='true' :可以编辑 contentEditable='false' :不可以编辑 阅读全文
摘要:
1.刷新当前页面:(通过给location.href赋值的方式) window.location.href="" eg:window.location.href="http://www.baidu.com" 2.重新加载文档:(location.reload()方法) 1)window.locati 阅读全文
摘要:
CSS命名规范(规则)常用的CSS命名规则 头:header 内容:content/container 尾:footer 导航:nav 侧栏:sidebar 栏目:column 页面外围控制整体佈局宽度:wrapper 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1 阅读全文
摘要:
爱心图片: HTML: 阅读全文
摘要:
阻止浏览器的touchstart事件 document.addEventListener('touchstart', function(e) { e.preventDefault(); }, false); 阅读全文
摘要:
这个问题我已经遇到了2次,第一次解决了后,第二次又遇到了,所以这次做个笔记,怕以后再次遇到 举例: 1.要实现的问题:我需要在canvas画布上画上我的微信头像 2.后台配置已经完成了允许我头像地址的跨域 3.结果:目前依然画不起我的微信头像至画布上 此时我的解决办法: 在放头像的img标签上添加 阅读全文