JavaScript 编程开发中单元选择合并变色示例代码
代码如下:
<!doctype html>
<html>
<head>
<title>the document title</title>
<meta charset=utf-8>
<script src="lib/jquery-1.8.1.min.js" type="text/javascript"></script>
<style type="text/css">
table{
border-spacing: 0;
}
td{
height: 50px;
width: 50px;
border-spacing: 0;
}
.hidden{
display: none;
}
</style>
</head>
<body>
<table border="1">
<tr id ="r1">
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr id ="r2">
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<p id ='log'></p>
<button type="button" onclick="combine()">hebing</button>
<script type="text/javascript">
var selectecdlog = [];
var resultlen = 0;
var resultbegin = 0;
var backcolor = ['red','green','blue']; // assume 3 rows 1 -red 2 - green 3 - blue
var resultcolor =0;
$("td").mousedown(function() {
selectecdlog = [];
resultcolor = backcolor[$(this).parent().attr('id').substr(1)-1];
$('td').css('background-color', 'white');
// id for tr tag
//alert($(this).parent().attr('id'));
//get the column no.
//alert($(this).index()+1);
$(this).css('background-color', resultcolor);
selectecdlog.push($(this).attr('id'));
//alert($(this).attr('id'));
$("td").mouseup(onmouseup);
$("td").mouver(onmouseover);
})
function onmouseup(){
/* act on the event */
var len =resultlen= math.abs(parseint(selectecdlog[0].substr(selectecdlog[0].indexof('c')+1)) - parseint($(this).attr('id').substr(($(this).attr('id').indexof('c'))+1)))+1;
var begin =resultbegin= parseint(selectecdlog[0].substr(selectecdlog[0].indexof('c')+1)) >parseint($(this).attr('id').substr(($(this).attr('id').indexof('c'))+1)) ? parseint($(this).attr('id').substr(($(this).attr('id').indexof('c'))+1)):parseint(selectecdlog[0].substr(selectecdlog[0].indexof('c')+1));
for(var i =0; i<resultlen;i++)
{
selectecdlog.push(selectecdlog[0].substr(0,2)+"c"+(resultbegin+i));
}
selectecdlog.shift();
$('#log').text(selectecdlog.tostring());
$("td").unbind('mouseover',onmouseover);
$("td").unbind('mouseup',onmouseup);
}
function onmouseover (argument) {
var len =resultlen= math.abs(parseint(selectecdlog[0].substr(selectecdlog[0].indexof('c')+1)) - parseint($(this).attr('id').substr(($(this).attr('id').indexof('c'))+1)))+1;
var begin =resultbegin= parseint(selectecdlog[0].substr(selectecdlog[0].indexof('c')+1)) >parseint($(this).attr('id').substr(($(this).attr('id').indexof('c'))+1)) ? parseint($(this).attr('id').substr(($(this).attr('id').indexof('c'))+1)):parseint(selectecdlog[0].substr(selectecdlog[0].indexof('c')+1));
$('td').css('background-color', 'white');
for(var i =0; i<len;i++)
{
$('#'+selectecdlog[0].substr(0,2)+"c"+(begin+i)).css('background-color', resultcolor);
}
//alert( $(this).attr('id').substr(($(this).attr('id').indexof('c'))+1));
//$('#'+tdid).css('background-color', 'red');
}
// set id attr for each td
$("td").each(function(index, val){
/* iterate through array or object */
$(this).attr('id', $(this).parent().attr('id')+"c"+($(this).index()+1))});
//combine cells
function combine (argument) {
// body...
for (var m in selectecdlog)
{
if(m==0)
{
$('#'+selectecdlog[m]).attr('colspan', resultlen);
$('#'+selectecdlog[m]).css('width',resultlen*50+"px");
//$('#'+selectecdlog[m]).css('background-color', 'bule');
}
else{
$('#'+selectecdlog[m]).addclass('hidden');
}
}
}
</script>
</body>
</html>