分享
 
 
 

课表拖放的实现

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML>

<HEAD>

<title>WebForm2</title>

<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">

<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">

<meta name="vs_defaultClientScript" content="JavaScript">

<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">

<SCRIPT language="javascript">

/*--------全局变量-----------*/

var x0,y0,x1,y1,isreplace;

var movable = false;

var preCell = null;

var normalColor = null;

var preColor = "lavender";

var endColor = "#FFCCFF";

/*--------全局变量-----------*/

//得到控件的绝对位置

function getPos(cell)

{

var pos = new Array();

var t=cell.offsetTop;

var l=cell.offsetLeft;

while(cell=cell.offsetParent)

{

t+=cell.offsetTop;

l+=cell.offsetLeft;

}

pos[0] = t; //纵坐标

pos[1] = l; //横坐标

return pos;

}

//当鼠标拖动某一个td时,显示临时图层

function showDiv(ischange)

{

var ischange=ischange

isreplace=ischange //得到触发该事件的是哪个table来决定是否替换

var obj = event.srcElement; //得到触发该事件的对象,也就是对触发该事件对象的一个引用

var pos = new Array(); //定义一个数组用来存放位置参数

//获取过度图层

var oDiv = document.all.tempDiv; //对临时层的一个引用

if(obj.tagName.toLowerCase() == "td")

{

obj.style.cursor = "hand"; //当按下鼠标时,鼠标模式改成手型

pos = getPos(obj); //得到该td的位置(包括横纵坐标)

//计算中间过度层位置,赋值

oDiv.style.width = obj.offsetWidth; //得到td的宽,赋值给临时层tempDiv

oDiv.style.height = obj.offsetHeight; //得到td的高,赋值给临时层tempDiv

oDiv.style.top = pos[0]; //得到该td的纵坐标的位置,赋值给临时层tempDiv

oDiv.style.left = pos[1]; //得到该td的横坐标的位置,赋值给临时层tempDiv

oDiv.innerHTML = obj.innerHTML; //得到该td的文本显示内容,赋值给临时层tempDiv

oDiv.style.display = ""; //显示临时层,也就是当鼠标选中某一个td,按下去时显示的那个紫红色的框框

x0 = pos[1];

y0 = pos[0];

x1 = event.clientX; //返回当前鼠标所在位置的横坐标

y1 = event.clientY; //返回当前鼠标所在位置的纵坐标

//记住原td

normalColor = obj.style.backgroundColor; //得到触发该事件对象的背景色

obj.style.backgroundColor = preColor; //改变触发该事件的对象的背景色

preCell = obj; //赋值给另外一个空对象(属公共的变量)

movable = true; //标识有td在移动

}

}

//当拖动一个td时,经过其他td时所处理的事件

function dragDiv()

{

if(movable) //当上面的showDiv事件为真时,执行下面的代码

{

var oDiv = document.all.tempDiv; //对临时层的一个引用

var pos = new Array(); //定义一个存放位置的数组

oDiv.style.top = event.clientY - y1 + y0; //定义临时层的位置(纵坐标)为:当前鼠标位置(纵坐标)-按下鼠标时的鼠标位置(纵坐标)+原来td的纵坐标

oDiv.style.left = event.clientX - x1 + x0; //定义临时层的位置(横坐标)为:当前鼠标位置(横坐标)-按下鼠标时的鼠标位置(横坐标)+原来td的横坐标

var oTable = document.all.tb2;

//根据条件显示不同背景色

for(var i=0; i<oTable.cells.length; i++)

{

if(oTable.cells[i].tagName.toLowerCase() == "td")

{

pos = getPos(oTable.cells[i]);

if(event.x>pos[1] && event.x<pos[1]+oTable.cells[i].offsetWidth && event.y>pos[0] && event.y<pos[0]+oTable.cells[i].offsetHeight)

{

if(oTable.cells[i] != preCell)

oTable.cells[i].style.backgroundColor = endColor;

}

else

{

if(oTable.cells[i] != preCell)

oTable.cells[i].style.backgroundColor = normalColor;

}

}

}

}

}

function hideDiv()

{

if(movable)

{

var oTable = document.all.tb2;

var pos = new Array();

if(preCell != null)

{

for(var i=0; i<oTable.cells.length; i++)

{

pos = getPos(oTable.cells[i]);

//计算鼠标位置,是否在某个单元格的范围之内

if(event.x>pos[1]&&event.x<pos[1]+oTable.cells[i].offsetWidth && event.y>pos[0]&& event.y<pos[0]+oTable.cells[i].offsetHeight)

{

if(oTable.cells[i].tagName.toLowerCase() == "td" && oTable.cells[i].style.backgroundColor.toLowerCase()=="#ffccff")

{

if(isreplace=="2"){ //如果是下面表格内部拖动,则内容互换

preCell.innerHTML = oTable.cells[i].innerHTML;

}

//当下面的td中有内容时,则上面的课程将与下面的课程互换----注意:这个if和下面紧接着的if位置不能互换.

if(isreplace=="1" && oTable.cells[i].innerText.length > 1){

preCell.innerHTML= oTable.cells[i].innerHTML

oTable.cells[i].innerHTML = document.all.tempDiv.innerHTML;

}

//当下面的td中没有内容时,则上面的课程将被移除----注意:这个if和上面紧接着的if位置不能互换.

if(isreplace=="1" && oTable.cells[i].innerText.length == 1){

preCell.innerHTML=""

oTable.cells[i].innerHTML = document.all.tempDiv.innerHTML;

}

if(isreplace=="2"){

oTable.cells[i].innerHTML = document.all.tempDiv.innerHTML;

}

//清除原单元格和目标单元格的样式

preCell.style.backgroundColor = normalColor;

oTable.cells[i].style.backgroundColor = normalColor;

oTable.cells[i].style.cursor = "";

preCell.style.cursor = "";

preCell.style.backgroundColor = normalColor;

}

}

}

}

movable = false;

//清除提示图层

document.all.tempDiv.style.display = "none";

}

}

//在页面提交时触发下面的事件,给隐藏字段赋值

function getvalue(){

for(var i=0; i<oTable.cells.length; i++){

document.all["kc_name"+i].value = oTable.cells[i].innerHTML;

//alert(document.all["kc_name"+i].value)

}

}

document.onmouseup = function()

{

hideDiv();

var oTable = document.all.tb2;

for(var i=0; i<oTable.cells.length; i++)

oTable.cells[i].style.backgroundColor = normalColor;

}

document.onmousemove = function()

{

dragDiv();

}

</SCRIPT>

</HEAD>

<body MS_POSITIONING="GridLayout">

<form name="Form1" method="post" action="WebForm11.aspx" id="Form1">

<table id="tb1" cellspacing="0" onMouseDown="showDiv('1')" onselectstart="return false;" border="0" style="width:200px;border-collapse:collapse;BORDER-RIGHT:black 1px solid; BORDER-TOP:black 1px solid; FONT-SIZE:13px; BORDER-LEFT:black 1px solid; BORDER-BOTTOM:black 1px solid">

<tr>

<td>语文</td>

</tr>

<tr>

<td>数学</td>

</tr>

<tr>

<td>英语</td>

</tr>

<tr>

<td>物理</td>

</tr>

<tr>

<td>化学</td>

</tr>

<tr>

<td>地理</td>

</tr>

<tr>

<td>生物</td>

</tr>

<tr>

<td>历史</td>

</tr>

<tr>

<td>政治</td>

</tr>

</table>

<TABLE style="BORDER-RIGHT:black 1px solid; BORDER-TOP:black 1px solid; FONT-SIZE:13px; BORDER-LEFT:black 1px solid; BORDER-BOTTOM:black 1px solid"

id="tb2" onMouseDown="showDiv('2')" onselectstart="return false;" cellpadding="0" cellspacing="1"

bordercolor="#ffccff" bgcolor="#999999" width="200">

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<tr align="center" width="50">

<td height="22" bgcolor="#FFFFFF">&nbsp;

</td>

</tr>

<input type="hidden" name="kc_name0" value="">

<input type="hidden" name="kc_name1" value="">

<input type="hidden" name="kc_name2" value="">

<input type="hidden" name="kc_name3" value="">

<input type="hidden" name="kc_name4" value="">

<input type="hidden" name="kc_name5" value="">

<input type="hidden" name="kc_name6" value="">

<input type="hidden" name="kc_name7" value="">

<input type="hidden" name="kc_name8" value="">

</TABLE>

<DIV id="tempDiv" onselectstart="return false" style="cursor:hand;position:absolute; border:1px solid black; background-color:#FFCCFF; display:none">

</DIV>

</form>

</body>

</HTML>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有