摘要:
client 可视区域 clientWidth width+padding 阅读全文
摘要:
JSON JavaScript Object Notation 时下最流行的数据交换格式 特点 键和值 都必须包裹在引号中 语法 数据在键值对中 数据由逗号分隔 花括号保存对象 方括号保存数组 格式 阅读全文
摘要:
scroll scrollTop 被卷去的头部 scrollLeft 被卷去的左边 没有文件头 document.body.scrollTop 其他 document.documentElement.scrollTop 最新的浏览器 window.pageYOffset 阅读全文
摘要:
/** * 选中的文本(兼容) **/function funSelectionText() { window.getSelection?window.getSelection().toString():document.selection.createRange().text;} /** * 禁止选中文本(兼容) **/function funClearSelection() { w... 阅读全文