摘要:
dom文本全选,全不选 案例1: <input type="checkbox" name= "" id="ck" value ="" />全选 <input type="checkbox" name= "" class="cklist" value ="" />北京 <input type="che 阅读全文
摘要:
JS中dom的操作元素: 内容: element.innerText = " " ——不能识别html标签 element.innerHtml = " " 案例: #aa{ width: 100px; height: 50px; border: 1px solid grey; text-align: 阅读全文
摘要:
JS中dom的事件基础: 事件由三部分: 1、事件源: 先找到元素,绑定事件,事件的执行函数function(){}(匿名函数) 2、事件类型: 鼠标时间: 鼠标左击事件: onclick 鼠标经过: onmouseover 鼠标离开: onmouseout 获得鼠标焦点: onfocus 失去鼠标 阅读全文