Calling merge Functions
<script type= "text/web Effects" ><!--
$ (document). Ready (function () {
_w_table_rowspan ("#spdata", 4);
_w_table_rowspan ("#spdata", 3);
_w_table_rowspan ("#spdata", 2);
_w_table_rowspan ("#spdata", 1);
});
-->
</script>
The following code
Function Description: Merges the adjacent cells of the same text with the specified table (table ID _w_table_id) that specifies the column (the number of columns is _w_table_colnum)
Parameter description: _W_TABLE_ID is the ID of the table for which you want to merge cells. If you specify a table id= "data" in HTML, this parameter should be #data
Parameter description: _w_table_colnum is the column where you want to merge the cells. As a number, starting from the leftmost first column 1.
function _w_table_rowspan (_w_table_id,_w_table_colnum) {
_W_TABLE_FIRSTTD = "";
_W_TABLE_CURRENTTD = "";
_w_table_spannum = 0;
_w_table_obj = $ (_w_table_id + "tr td:nth-child (" + _w_table_colnum +) ");
_w_table_obj.each (function (i) {
if (i==0) {
_W_TABLE_FIRSTTD = $ (this);
_w_table_spannum = 1;
}else{
_W_TABLE_CURRENTTD = $ (this);
if (_w_table_firsttd.text () ==_w_table_currenttd.text ()) {
_w_table_spannum++;
_w_table_currenttd.hide (); Remove ();
_w_table_firsttd.attr ("rowspan", _w_table_spannum);
}else{
_W_TABLE_FIRSTTD = $ (this);
_w_table_spannum = 1;
}
}
});
}
Function Description: Merges the adjacent cells of the same text with the specified table (table ID _w_table_id) that specifies the row (the number of rows is _w_table_rownum)
Parameter description: _W_TABLE_ID is the table ID for the merged cells that you want. If you specify a table id= "data" in HTML, this parameter should be #data
Parameter description: _w_table_rownum is the row where you want to merge cells. Refer to the parameters of the Nth-child in jquery for its parameter form.
If it is a number, start with the first Act 1 on the left.
"Even" means even rows
"Odd" means odd rows
The number of rows represented by "3n+1" is 1, 4, 7, 10.
Parameter description: _w_table_maxcolnum The maximum number of columns for the cell in the specified row, and the cells with the number of columns greater than this value will not be merged.
This parameter can be empty, and null to specify that all cells for the specified row are compared to merge.
function _w_table_colspan (_w_table_id,_w_table_rownum,_w_table_maxcolnum) {
if (_w_table_maxcolnum = = void 0) {_w_table_maxcolnum=0}
_W_TABLE_FIRSTTD = "";
_W_TABLE_CURRENTTD = "";
_w_table_spannum = 0;
$ (_w_table_id + "tr:nth-child (" + _w_table_rownum + ")"). each (function (i) {
_w_table_obj = $ (this). Children ();
_w_table_obj.each (function (i) {
if (i==0) {
_W_TABLE_FIRSTTD = $ (this);
_w_table_spannum = 1;
}else if ((_w_table_maxcolnum>0) && (i>_w_table_maxcolnum)) {
Return "";
}else{
_W_TABLE_CURRENTTD = $ (this);
if (_w_table_firsttd.text () ==_w_table_currenttd.text ()) {
_w_table_spannum++;
_w_table_currenttd.hide (); Remove ();
_w_table_firsttd.attr ("colspan", _w_table_spannum);
}else{
_W_TABLE_FIRSTTD = $ (this);
_w_table_spannum = 1;
}
}
});
});
}