js常用操作事件】的更多相关文章

触发描述 方法 用法 点击 onclick="method();"   变换 onchange="testChange();"   双击 ondblclick="testChange();"   内部移动触发 onmousemove="testMove();"   鼠标指针进入 onmouseover="testMove();   页面输出 document.write("输出内容)   鼠标指针移出 on…
11 //全选 $("#allCheckbox").click(function () { var checkedStatus = this.checked; //alert(checkedStatus); //$("tbody tr td input[type='checkbox']").attr("checked",checkedStatus); //$("tbody tr td input[type='checkbox']&quo…
zepto.js是移动端的jquery,但是并没有提供所有与jquery类似的api.Zepto设计的目的是有一个5-10k的通用库.下载并快速执行.有一个熟悉通用的API,所以你能把你主要的精力放到应用开发上.而jquey中涵盖了很多比如兼容IE浏览器的代码,这在移动端上完全是没有必要的,所以zepto做了一些精简并提供了移动端相关touch事件. github 下载zepto.js zepto.js静态文件 http://zeptojs.com/zepto.js 我们可以看到zepto的大小…
js常见的创建dom节点的方法有 createElement() 创建一个元素节点 => 接收参数为string类型的nodename createTextNode() 创建一个文本节点 => 接收参数为string类型的text内容 createAttribute() 创建一个属性节点 => 接收参数为string类型的属性名称 createComment() 创建一个注释节点 => 接收参数为string类型的注释文本 一.创建DOM节点使用的命令是 var oDiv = do…
页面前进后退<input type=button value=刷新 onclick="window.location.reload()"><input type=button value=前进 onclick="window.history.go(1)"><input type=button value=后退 onclick="window.history.go(-1)"><input type=butt…
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <table id="keybord"> <tr> <td><input /></td>…
事件源对象  event.srcElement.tagName  event.srcElement.type 捕获释放  event.srcElement.setCapture();   event.srcElement.releaseCapture(); 事件按键  event.keyCode  event.shiftKey  event.altKey  event.ctrlKey 事件返回值  event.returnValue 鼠标位置  event.x  event.y 窗体活动元素 …
map操作:var map = {};map["a"] = 1;map["b"] = 2; console.log(Object.keys(map)); //[ 'a', 'b' ]console.log(map); //{ a: 1, b: 2 }delete map["a"]; 遍历map for(var key in $scope.idsMap){ $scope.kpIds.push($scope.idsMap[key]);}…
正则表达式 <script> var str = "(08:30-10:00)"; var patt = /^[(][0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}[)]$/; var res = patt.test(str); document.write("<br/><br/>" + res); </script> 动态获取验证码 onclick="this.src='/Login/…
1.替换多个模板变量 var s="my javascript is very poor,who can help me?" var reg=/(\w*)my(.*)is(.*)can(.*)/g alert(s.replace(reg,"$1his$2was$3could")); //输出 his javascript was very poor,who could help me?…