Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
sdj4638220
新疆乌鲁木齐市
关注作者
(0)
收藏此代码
(115)
← vue抽奖弹框
→ 多图一次上传
相关代码
表格
拖选功能
jquery
实现
表格
复制
jQuery
表格
数据搜索
jQuery
表格
内容编辑
多规格自动生成多维
表格
jquery
获取
表格
同行的数据
jQuery
仿Excel
表格
选中单元格变色特效
Html
Css
Js
会议室名称
10:00
11:00
12:00
13:00
14:00
15:00
16:00
17:00
18:00
19:00
会议室1
会议室2
.hidden { display:none; } table td.dselected { background-color:green; }
$(function() { var now = new Date(); var year = now.getFullYear(); var month = now.getMonth() + 1; var day = now.getDate(); $('.busy').click(function() { location.href = $(this).data('href'); }); // 可 $('.mavailab').click(function() { }); $('body').append('
'); var table = $("#meetingRoomsTable"); $('#meetingRoomsTable .mavailab').hover(function() { $('#am-popover-order .am-popover-inner').text('双击或拖动选择' + $(this).data('time') + $(this).parent().data('room-name')); var thisOffsetLeft = $(this).offset().left; var popoverWidth = $('#am-popover-order').outerWidth(); var offsetLeft = thisOffsetLeft + (popoverWidth / 2 - $(this).outerWidth() / 2 + 10) > $('body').width() - 20 ? $('body').width() - popoverWidth - 5 : thisOffsetLeft - popoverWidth / 2 + $(this).outerWidth() / 2 $('#am-popover-order').css({ left: offsetLeft, top: $(this).offset().top - 52 }) $('#am-popover-order').show(); }, function() { $('#am-popover-order').hide(); }); $('.mlimit').each(function() { $(this).style = "background=red"; $(this).popover({ content: '受限', trigger: 'hover' }); }); // 时间选择 var isMouseDown = false; var startRowIndex = null; var startCellIndex = null; var startCellTime = null; var endCellTime = null; var cellRoomId = null; var cellRoomName = null; function selectTo(cell) { var row = cell.parent(); var cellIndex = cell.index(); var rowIndex = row.index(); var rowStart, rowEnd, cellStart, cellEnd; rowStart = startRowIndex; rowEnd = rowIndex; if (cellIndex < startCellIndex) { cellStart = cellIndex; cellEnd = startCellIndex; } else { cellStart = startCellIndex; cellEnd = cellIndex; } endCellTime = cell.data('time'); cellRoomId = cell.parent().data('room-id'); cellRoomName = cell.parent().data('room-name'); var rowCells = table.find("tr").eq(rowStart).find("td"); for (var j = cellStart; j <= cellEnd; j++) { rowCells.eq(j).addClass("dselected"); } } table.find("td.meeting-cell").mousedown(function(e) { isMouseDown = true; var cell = $(this); table.find(".dselected").removeClass("dselected"); // deselect everything if (e.shiftKey) { selectTo(cell); } else { cell.addClass("dselected"); startCellIndex = cell.index(); startRowIndex = cell.parent().index(); startCellTime = cell.data('time'); endCellTime = cell.data('time'); } return false; // prevent text selection }) .mouseover(function() { if (!isMouseDown) return; selectTo($(this)); }) .bind("selectstart", function() { return false; }); $(document).mouseup(function() { if (isMouseDown) { // 检查选择的时间段 var dStart = new Date(year + '-' + month + '-' + day + 'T' + startCellTime + ':00'); var dEnd = new Date(year + '-' + month + '-' + day + 'T' + endCellTime + ':00'); var duration = (dEnd.getTime() - dStart.getTime()) / 60000 + 30; if (duration > 720) { duration = 60; } if (startCellTime == undefined) { isMouseDown = false; return; } if (cellRoomName == undefined) { isMouseDown = false; return; } alert(cellRoomName + "~~" + startCellTime + '&duration=' + duration); // 弹框选择会议类型 // TODO: 不存在, 改js /* $('#dlg-new-meeting-title').html('预订2017-11-30' + cellRoomName + startCellTime); $('#dlg-new-meeting-link-s').attr('href', '/meetings/d/2017-11-30/r/' + cellRoomId + '/new?startTime=' + startCellTime + '&duration=' + duration); $('#dlg-new-meeting-link-i').attr('href', '/meetings/d/2017-11-30/r/' + cellRoomId + '/new-interview?startTime=' + startCellTime + '&duration=' + duration); $('#dlg-new-meeting-link-c').attr('href', '/meetings/d/2017-11-30/r/' + cellRoomId + '/new-customer?startTime=' + startCellTime + '&duration=' + duration); */ // $('#new-meeting-dlg').modal({width: "280px"}); } isMouseDown = false; }); });
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
2.1.4
立即下载
表格拖选功能
代码描述:jquery表格拖选功能
实现表格拖选时间段,能够添加任务,工作等。
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>表格拖选功能-jq22.com</title> <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号