化身天使的博客

随笔分类 -  web前端

摘要:元素 .offsetParent 获取父级元素 元素尺寸 偏移尺寸 .offsetHeight; 高度(加上边框和可见的水平滚动条),只读 .offsetWidth; 宽带(同上),只读 客户端尺寸 .clientHeight; 高度(不含边框滚动条),只读 .clientWidth; 宽度(同上) 阅读全文
posted @ 2024-01-25 18:49 化身天使 阅读(25) 评论(0) 推荐(0)
摘要:事件监听 let did = document.getElementById("div-id"); 监听函数 Dom0方式 did.onclick = function(e){}; Dom2方式 did.addEventListener("click",(e)=>{}); 元素.addEventLi 阅读全文
posted @ 2024-01-25 18:48 化身天使 阅读(27) 评论(0) 推荐(0)
摘要:安装 下载 [https://nodejs.org/download/release/v19.9.0/] 配置 源管理 查看当前源 npm config get registry 持久换源 npm config set registry http://registry.npm.taobao.org/ 阅读全文
posted @ 2023-07-29 11:44 化身天使 阅读(53) 评论(0) 推荐(0)
摘要:1. 使用js 1.1 外部脚本引入 <script>脚本内容写在script标签里</script> <script src="../js/ajax.js"></script> //src里写脚本地址,可以是本地,也可以是链接 1.2 嵌入html <script>脚本内容写在script标签里< 阅读全文
posted @ 2021-08-09 13:11 化身天使 阅读(87) 评论(0) 推荐(0)