DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JavaScript常用腳本匯總(三)
JavaScript常用腳本匯總(三)
編輯:關於JavaScript     

通過數組,拓展字符串拼接容易導致性能的問題

復制代碼 代碼如下:
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

以上就是本文分享的javascript常用腳本了,希望大家能夠喜歡。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved