经由过程数组,拓展字符串拼接轻易致使机能的题目
function StringBuffer() {
this.__strings__ = new Array();
}
StringBuffer.prototype.append = function (str) {
this.__strings__.push(str);
return this;
}
StringBuffer.prototype.toString = function () {
return this.__strings__.join("");
}
var buffer = new StringBuffer();
buffer.append("Hello ").append("javascript");
var result = buffer.toString();
alert(result); //Hello javascript
代码泉源:https://gist.github.com/hehongwei44/fe71f10e4d2d9295aeab
页面 视口 滚动条的位置的辅佐函数
/*肯定当前页面高度和宽度的两个函数*/
function pageHeight() {
return document.body.scrollHeight;
}
function pageWidth() {
return document.body.scrollWidth;
}
/*肯定滚动条水温和垂直的位置*/
function scrollX() {
var de = document.documentElement;
return self.pageXOffset || (de && de.scrollLeft) || document.body.scrollLeft;
}
function scrollY() {
var de = document.documentElement;
return self.pageYOffset || (de && de.scrollTop) || document.body.scrollTop;
}
/*肯定浏览器视口的高度和宽度的两个函数*/
function windowHeight() {
var de = document.documentElement;
return self.innerHeight || (de && de.clientHeight) || document.body.clientHeight;
}
function windowWidth() {
var de = document.documentElement;
return self.innerWidth || (de && de.clientWidth) || document.body.clientWidth;
}
代码泉源:https://gist.github.com/hehongwei44/62907b9b7061d4defadb
调治元素透明度的函数
/*调治元素透明度的函数*/
function setOpacity(elem, level) {
//IE处置惩罚透明度
if (elem.filters) {
elem.style.filters = 'alpha(opacity=' + level + ')';
} else {
elem.style.opacity = level / 100;
}
}
代码泉源:https://gist.github.com/hehongwei44/87839cd3b8439aff6a3c
猎取鼠标位置的几个通用的函数
/*两个通用函数,用于猎取鼠标相对于全部页面的当前位置*/
function getX(e) {
e = e || window.event;
return e.pageX || e.clientX + document.body.scrollLeft;
}
function getY(e) {
e = e || window.event;
return e.pageY || e.clientY + document.body.scrollTop;
}
/*两个猎取鼠标相对于当前元素位置的函数*/
function getElementX(e) {
return (e && e.layerX) || window.event.offsetX;
}
function getElementY(e) {
return (e && e.layerY) || window.event.offsetY;
}
代码泉源:https://gist.github.com/hehongwei44/2732365bd42baa491ef8
运用cssdisplay属性来切换元素可见性的一组函数
/**
* 运用display来隐蔽元素的函数
* */
function hide(elem) {
var curDisplay = getStyle(elem, 'display');
if (curDisplay != 'none') {
elem.$oldDisplay = curDisplay;
}
elem.style.display = 'none';
}
/**
* 运用display来显现元素的函数
* */
function show(elem) {
elem.style.display = elem.$oldDisplay || '';
}
代码泉源:https://gist.github.com/hehongwei44/b4192af8227d756bfda6
款式相干的通用函数
/**
* 猎取指定元素(elem)的款式属性(name)
* */
function getStyle(elem, name) {
//假如存在于style[]中,那末它已被设置了(并且是当前的)
if (elem.style[name]) {
return elem.style[name];
}
//不然,测试IE的要领
else if (elem.currentStyle) {
return elem.currentStyle[name];
}
//或许W3C的要领
else if(document.defaultView && document.defaultView.getComputedStyle){
name = name.replace(/(A-Z)/g, "-$1");
name = name.toLowerCase();
var s = document.defaultView.getComputedStyle(elem, "");
return s && s.getPropertyValue(name);
}
//不然,用户运用的是其他浏览器
else {
return null;
}
}
代码泉源:https://gist.github.com/hehongwei44/9abf63536accd0f2eeb7
猎取元素当前的高度和宽度
/**
* 猎取元素的实在高度
* 依靠的getStyle见上面的函数。
* */
function getHeight(elem) {
return parseInt(getStyle(elem, 'height'));
}
/**
* 猎取元素的实在宽度
* 依靠的getStyle见上面的函数
* */
function getWidth(elem) {
return parseInt(getStyle(elem, 'width'));
}
代码泉源:https://gist.github.com/hehongwei44/b524ff25991d99625eb2