DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 前端技巧 >> 前端開發必備常用工具函數小結
前端開發必備常用工具函數小結
編輯:前端技巧     

1、時間格式化等方法

推薦使用 moment.js 的庫文件

2、模板、循環、MAP等方法使用

underscode.js 的方法

3、表單序列化成JSON


復制代碼代碼如下:
$.fn.serializeJson = function() {
var serializeObj = {};
var array = this.serializeArray();
var str = this.serialize();
$(array).each(function() {
if (serializeObj[this.name]) {
if ($.isArray(serializeObj[this.name])) {
serializeObj[this.name].push(this.value);
} else {
serializeObj[this.name] = [serializeObj[this.name], this.value];
}
} else {
serializeObj[this.name] = this.value;
}
});
return serializeObj;
};

4、字符串截取使用……填補


復制代碼代碼如下:
String.prototype.strcut = function(number) {
var length = this.length;
var tmp = this.substr(0, number);
if (this.length > number) {
tmp += "…";
}
return tmp;
}

5、時間格式為,xxxx 天,xxx分鐘前,日期


復制代碼代碼如下:
Date.prototype.Format = function(fmt, current) {
if (current) {
var diff = current - this.getTime();
if (diff < 5 * 60 * 1000) {
return "剛剛";
}
if (diff < 60 * 60 * 1000) {
return (Math.floor(diff / (60 * 1000))) + "分鐘前";
}
if (diff < 24 * 60 * 60 * 1000) {
return (Math.floor(diff / (60 * 60 * 1000))) + "小時前";
}
if (diff < 30 * 24 * 60 * 60 * 1000) {
return (Math.floor(diff / (24 * 60 * 60 * 1000))) + "天前";
}
if (diff < 12 * 30 * 24 * 60 * 60 * 1000) {
return (Math.floor(diff / (30 * 24 * 60 * 60 * 1000))) + "月前";
}
if (diff > 12 * 30 * 24 * 60 * 60 * 1000) {
return (Math.floor(diff / (12 * 30 * 24 * 60 * 60 * 1000))) + "年前";
}
}
var o = {
"Y+": this.getFullYear(), //月份
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小時
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
};

6、解析URL


復制代碼代碼如下:
function parseUrl() {
var arr = location.search.split('?')[1].split('&');
var params = {};
for (var i = 0, l = arr.length; i < l; i++) {
var param = arr[i].split('=');
params[param[0]] = param[1];
}
return params;
}

7、獲取get參數


復制代碼代碼如下:
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}

8、函數節流,讓頻繁事件觸發更稀疏提高性能,例如及時搜索功能。使用方法為fn 為事件響應函數,delay 為間隔時間,調用 throttle(fn,delay) 返回一個新的函數給事件即可


復制代碼代碼如下:
function throttle(fn, delay) {
var timer = null;
return function() {
var context = this,
args = arguments;
clearTimeout(timer);
timer = setTimeout(function() {
fn.apply(context, args);
}, delay);
};
}

9、防止表單多次提交,和9中一樣,返回一個新的函數


復制代碼代碼如下:
/**
* 防止多次點擊函數
*
* fn 完成時調用回調
* function fn(event,end) {
* (typeof end === "function") && end(); // 操作完成
* }
*/function noRepeateTap(fn) {
var $obj;
return function(event) {
$obj = $(this);
if ($obj.data("loadding") === "true") {
return;
}
$obj.data("loadding", "true").addClass('loadding');
fn.call(this, event, function end() {
$obj.data("loadding", "").removeClass('loadding');
return;
});
}
}

第9個的使用例子


復制代碼代碼如下:
// 綁定事件
$(container).on('click', '.btn-cancel', noRepeateTap(cancel));
// 事件響應函數
function cancel(event, end) {
event.preventDefault();
// 模擬異步請求
setTimeout(function(){
end(); // 需要手動調用注入的完成函數,通知完成,函數自動添加loadding class 類,用於調整樣式,完成後自動移除
},5000)
}

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