Le nom du plug-in est : jquery.tableresize.js, et le code est le suivant :
/*
Écrit par mlcactus, 2014-11-24
Il s'agit d'un plug-in jquery que j'ai packagé, qui permet à chaque colonne du tableau de s'étirer à gauche et à droite, rendant ainsi la largeur plus petite ou plus grande
Utilisation :
Table unique : $("#table_id").tableresize();
Tous les tableaux de la page : $("table").tableresize();
*/
(fonction ($) {
$.fn.tableresize = fonction () {
var _document = $("body");
$(this).each(function () {
Si (!$.tableresize) {
$.tableresize = {};
}
var _table = $(this);
//Définir l'ID
var id = _table.attr("id") || "tableresize_" (Math.random() * 100000).toFixed(0).toString();
var tr = _table.find("tr").first(), ths = tr.children(), _firstth = ths.first();
//Définir un objet de stockage de variables temporaires
var cobjs = $.tableresize[id] = {};
cobjs._currentObj = null, cobjs._currentLeft = null;
ths.mousemove(function (e) {
var _this = $(this);
var left = _this.offset().left, top = _this.offset().top, width = _this.width(), height = _this.height(), right = largeur gauche, bottom = hauteur supérieure, clientX = e .clientX, clientY = e.clientY;
var leftside = !_firstth.is(_this) && Math.abs(left - clientX) <= 5, rightside = Math.abs(right - clientX) <= 5;
If (cobjs._currentLeft || clientY > top && clientY < bottom && (leftside || rightside)) {
_document.css("cursor", "e-resize");
Si (!cobjs._currentLeft) {
if (côté gauche) {
cobjs._currentObj = _this.prev();
}
autre {
cobjs._currentObj = _this;
}
}
}
autre {
cobjs._currentObj = null;
}
});
ths.mouseout(function (e) {
si (!cobjs._currentLeft) {
cobjs._currentObj = null;
_document.css("curseur", "auto");
>
});
_document.mousedown(fonction (e) {
si (cobjs._currentObj) {
cobjs._currentLeft = e.clientX;
>
sinon {
cobjs._currentLeft = null;
>
});
_document.mouseup(fonction (e) {
si (cobjs._currentLeft) {
cobjs._currentObj.width(cobjs._currentObj.width() (e.clientX - cobjs._currentLeft));
>
cobjs._currentObj = null;
cobjs._currentLeft = null;
_document.css("curseur", "auto");
});
});
};
})(jQuery);
页面代码为:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
http://www.w3.org/1999/xhtml">
表格1
ID | 名字 | 年纪 | 地址 | 电话 |
22 | Nom :44 | Âge :23 | Adresse :47 | Téléphone :15< /td>
|
28 | Nom :42 | Âge :68 | Adresse :30 | Téléphone :50< /td>
|
29 | Nom :63 | Âge :48 | Adresse :90 | Téléphone :76< /td>
|
表格2
ID | 名字 | 年纪 | 地址 | 电话 |
22 | Nom :44 | Âge :23 | Adresse :47 | Téléphone :15< /td>
|
28 | Nom :42 | Âge :68 | Adresse :30 | Téléphone :50< /td> |