透過數組,拓展字串拼接容易導致效能的問題
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屬性來切換元素可見性的一組函數
/**
* 表示を使用して要素を非表示にします
**/
関数 Hide(elem) {
var curDisplay = getStyle(elem, 'display');
if (curDisplay != 'none') {
elem.$oldDisplay = curDisplay;
}
elem.style.display = 'none';
}
/**
*要素の機能を表示するにはdisplayを使用します
**/
関数 show(elem) {
elem.style.display = elem.$oldDisplay || '';
}
コードソース: https://gist.github.com/hehongwei44/b4192af8227d756bfda6
スタイルに関する一般的な機能
/**
* 指定した要素(elem)のスタイル属性(name)を取得
**/
function getStyle(elem, name) {
// style[] に存在する場合、それは設定されています (そして現在です)
If (elem.style[名前]) {
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);
}
//それ以外の場合、ユーザーは別のブラウザを使用しています
他 {
return null;
}
}
コードソース: https://gist.github.com/hehongwei44/9abf63536accd0f2eeb7
要素の現在の高さと幅を取得します
/**
* 要素の実際の高さを取得します
* 依存する getStyle については上記の関数を参照してください。
**/
関数 getHeight(elem) {
Return parseInt(getStyle(elem, 'height'));
}
/**
* 要素の実際の幅を取得
* 依存する getStyle については、上記の関数を参照してください
**/
function getWidth(elem) {
Return parseInt(getStyle(elem, 'width'));
}
コードソース: https://gist.github.com/hehongwei44/b524ff25991d99625eb2
上記は、この記事で共有する一般的に使用される JavaScript スクリプトです。皆さんに気に入っていただければ幸いです。