摘要:
一、事件 1-26 1、onmousedown 定义:onmousedown事件会在鼠标按键被按下时发生 2、onmouseup 定义:onmouseup事件会在鼠标按键被松开时发生 3、onmousemove 定义:onmousemove事件会在鼠标指针移动时发生 支持该事件的js对象:docum 阅读全文
摘要:
这个系列的第一部分和第二部分,介绍了Javascript模块原型和理论概念,今天介绍如何将它们用于实战。 我采用的是一个非常流行的库require.js。 一、为什么要用require.js? 最早的时候,所有Javascript代码都写在一个文件里面,只要加载这一个文件就够了。后来,代码越来越多, 阅读全文
摘要:
var pxs = new Array(); pxs.push("22"); jQuery.each(pxs,function(){ str +=jQuery("#"+this).parent().attr("title")+" "; }); var myMap =new Map(); myMap. 阅读全文
摘要:
var getWebRootPath = function () { var a = window.document.location.href;// var b = window.document.location.pathname; var pos = a.indexOf(b); var pat 阅读全文